From f500fb2511b32b3d35387309b49e2ed81e161cce Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Tue, 18 Oct 2011 08:59:06 +0800 Subject: [PATCH] new pakcage: csound (BROKEN) --- csound/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 csound/Makefile diff --git a/csound/Makefile b/csound/Makefile new file mode 100644 index 0000000..b2c5e20 --- /dev/null +++ b/csound/Makefile @@ -0,0 +1,32 @@ +# +# This is free software, licensed under the GNU General Public License v2. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=csound +PKG_VERSION:=5.14.2 +PKG_SOURCE:=Csound$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/csound +PKG_BUILD_DIR:=$(BUILD_DIR)/Csound$(PKG_VERSION) +PKG_RELEASE:=1 +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/csound + TITLE:=Csound + SECTION:=utils + CATEGORY:=Utilities + URL:=http://csounds.com/ + DEPENDS:=@BROKEN +endef +define Package/csound/description +Csound is a sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms. Its use is not restricted to any style of music, having been employed for many years in the creation of classical, pop, techno, ambient, experimental, and (of course) computer music, as well as music for film and television. +endef + +define Package/csound/install + $(INSTALL_DIR) $(1)/usr/bin +endef + +$(eval $(call BuildPackage,csound))