OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
Source at commit 1b3135c created 8 years 1 month ago. By Xiangfu Liu, new package: SDL-widgets: a GUI toolkit on top of the SDL libraries | |
---|---|
1 | # |
2 | # Copyright (C) 2011 Qi Hardware Inc. |
3 | # Author: Xiangfu Liu <xiangfu@sharism.cc> |
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:=gtkguitune |
12 | PKG_VERSION:=0.8 |
13 | PKG_RELEASE:=1 |
14 | |
15 | PKG_SOURCE:=$(PKG_NAME)-gtk2-$(PKG_VERSION).tar.gz |
16 | PKG_SOURCE_URL:=http://www.oocities.org/harpin_floh/mysoft/ |
17 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) |
18 | PKG_INSTALL:=1 |
19 | |
20 | include $(INCLUDE_DIR)/package.mk |
21 | include $(INCLUDE_DIR)/nls.mk |
22 | |
23 | define Package/gtkguitune |
24 | MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc> |
25 | SECTION:=utils |
26 | CATEGORY:=Utilities |
27 | TITLE:=Guitune |
28 | URL:=http://www.oocities.org/harpin_floh/kguitune_page.html |
29 | DEPENDS:=+gtkmm +gtk2 +pango +atk +glib2 $(ICONV_DEPENDS) $(INTL_DEPENDS) +libsigcxx |
30 | endef |
31 | |
32 | define Package/gtkguitune/description |
33 | Guitune is a linux program for tuning guitars and other instruments by using the method of Schmitt-triggering |
34 | endef |
35 | |
36 | TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib |
37 | |
38 | define Package/gtkguitune/install |
39 | $(INSTALL_DIR) $(1)/usr/bin |
40 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/gtkguitune $(1)/usr/bin |
41 | endef |
42 | |
43 | $(eval $(call BuildPackage,gtkguitune)) |
44 | |
45 | # The following comments configure the Emacs editor. Just ignore them. |
46 | # Local Variables: |
47 | # compile-command: "make -C ~/openwrt-xburst.full_system package/gtkguitune/{clean,compile} -j2 V=99" |
48 | # End: |