mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 00:19:20 +02:00
[new packages] jdkdrum Command Line Drum Synth Program For Linux
This commit is contained in:
parent
67a7082245
commit
06fa0f3e57
51
jdkdrum/Makefile
Normal file
51
jdkdrum/Makefile
Normal file
@ -0,0 +1,51 @@
|
||||
#
|
||||
# Copyright (C) 2009 Qi Hardware Inc.
|
||||
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=jdkdrum
|
||||
PKG_VERSION:=
|
||||
PKG_SOURCE:=$(PKG_NAME).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.jdkoftinoff.com/main/Free_Projects/Drum_Synth_For_Linux/
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_RELEASE:=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/jdkdrum
|
||||
TITLE:=jdkdrum
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
DEPENDS:=
|
||||
URL:=http://www.jdkoftinoff.com/main/Free_Projects/Drum_Synth_For_Linux/
|
||||
endef
|
||||
|
||||
define Package/jdkdrum/description
|
||||
Command Line Drum Synth Program For Linux
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default,clean)
|
||||
$(call Build/Compile/Default)
|
||||
endef
|
||||
|
||||
define Build/Install
|
||||
endef
|
||||
|
||||
define Package/jdkdrum/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin $(1)/usr/share/jdkdrum
|
||||
$(INSTALL_BIN) ./files/jdkdrum $(1)/usr/bin/
|
||||
cp -f $(PKG_BUILD_DIR)/* $(1)/usr/share/jdkdrum || true
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,jdkdrum))
|
||||
# The following comments configure the Emacs editor. Just ignore them.
|
||||
# Local Variables:
|
||||
# compile-command: "make -C ~/openwrt-xburst.full_system package/jdkdrum/{clean,compile} -j2 V=99"
|
||||
# End:
|
2
jdkdrum/files/jdkdrum
Normal file
2
jdkdrum/files/jdkdrum
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
cd /usr/share/jdkdrum && ./jdkdrum $@
|
Loading…
Reference in New Issue
Block a user