1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-01 02:11:05 +03:00

new package, tunec, A command line guitar tuner for linux

This commit is contained in:
Xiangfu Liu 2010-11-25 18:07:01 +08:00
parent d0c6f14ceb
commit 1404776da2

41
tunec/Makefile Normal file
View File

@ -0,0 +1,41 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=tunec
PKG_REV:=2
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=svn
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://tunec.googlecode.com/svn/trunk/
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
include $(INCLUDE_DIR)/package.mk
define Package/tunec
SECTION:=utils
CATEGORY:=Utilities
TITLE:=A command line guitar tuner for linux
URL:=http://code.google.com/p/tunec/
DEPENDS:=+fftw3 @BROKEN #since the upstream libfftw3 install not correct
endef
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/include
TARGET_LDFLAGS+= -lfftw3
define Build/Compile
(cd $(PKG_BUILD_DIR); \
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) tuner.c -o $(PKG_NAME); \
)
endef
define Package/tunec/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/tunec \
$(1)/usr/bin/
endef
$(eval $(call BuildPackage,tunec))