OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # Copyright (C) 2009 Qi Hardware Inc. |
| 3 | # Author: Xiangfu Liu <xiangfu@qi-hardware.com> |
| 4 | # |
| 5 | # This is free software, licensed under the GNU General Public License v2. |
| 6 | # See /LICENSE for more information. |
| 7 | # |
| 8 | |
| 9 | include $(TOPDIR)/rules.mk |
| 10 | |
| 11 | PKG_NAME:=jdkdrum |
| 12 | PKG_VERSION:= |
| 13 | PKG_SOURCE:=$(PKG_NAME).tar.gz |
| 14 | PKG_SOURCE_URL:=http://www.jdkoftinoff.com/main/Free_Projects/Drum_Synth_For_Linux/ |
| 15 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) |
| 16 | PKG_RELEASE:=1 |
| 17 | PKG_INSTALL:=1 |
| 18 | |
| 19 | include $(INCLUDE_DIR)/package.mk |
| 20 | |
| 21 | define Package/jdkdrum |
| 22 | TITLE:=jdkdrum |
| 23 | SECTION:=utils |
| 24 | CATEGORY:=Utilities |
| 25 | DEPENDS:= |
| 26 | URL:=http://www.jdkoftinoff.com/main/Free_Projects/Drum_Synth_For_Linux/ |
| 27 | endef |
| 28 | |
| 29 | define Package/jdkdrum/description |
| 30 | Command Line Drum Synth Program For Linux |
| 31 | endef |
| 32 | |
| 33 | define Build/Compile |
| 34 | $(call Build/Compile/Default,clean) |
| 35 | $(call Build/Compile/Default) |
| 36 | endef |
| 37 | |
| 38 | define Build/Install |
| 39 | endef |
| 40 | |
| 41 | define Package/jdkdrum/install |
| 42 | $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/share/jdkdrum |
| 43 | $(INSTALL_BIN) ./files/jdkdrum $(1)/usr/bin/ |
| 44 | cp -f $(PKG_BUILD_DIR)/* $(1)/usr/share/jdkdrum || true |
| 45 | endef |
| 46 | |
| 47 | $(eval $(call BuildPackage,jdkdrum)) |
| 48 | # The following comments configure the Emacs editor. Just ignore them. |
| 49 | # Local Variables: |
| 50 | # compile-command: "make -C ~/openwrt-xburst.full_system package/jdkdrum/{clean,compile} -j2 V=99" |
| 51 | # End: |
| 52 |
