OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # Copyright (C) 2009 Qi Hardware. |
| 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 | # ERROR: eggtrayicon.h:27:25: fatal error: gtk/gtkplug.h: No such file or directory |
| 10 | |
| 11 | include $(TOPDIR)/rules.mk |
| 12 | |
| 13 | PKG_NAME:=gimmix |
| 14 | PKG_VERSION:=0.5.7.1 |
| 15 | |
| 16 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 17 | PKG_SOURCE_URL:=http://download.berlios.de/gimmix/ |
| 18 | |
| 19 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 20 | |
| 21 | |
| 22 | include $(INCLUDE_DIR)/package.mk |
| 23 | include $(INCLUDE_DIR)/nls.mk |
| 24 | |
| 25 | define Package/gimmix |
| 26 | SECTION:=sound |
| 27 | CATEGORY:=Sound |
| 28 | TITLE:=Gimmix is a GTK2 client for MPD |
| 29 | DEPENDS:=+gtk2 +libintl +libglade +libmpd +taglibc @BROKEN |
| 30 | URL:=http://gimmix.berlios.de/ |
| 31 | endef |
| 32 | |
| 33 | define Package/gimmix/description |
| 34 | Gimmix is a GTK2 client for MPD |
| 35 | endef |
| 36 | |
| 37 | CONFIGURE_ARGS += --disable-libtool-lock --disable-lyrics --disable-cover |
| 38 | |
| 39 | define Package/gimmix/install |
| 40 | $(INSTALL_DIR) $(1)/usr/bin |
| 41 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gimmix $(1)/usr/bin/ |
| 42 | endef |
| 43 | |
| 44 | $(eval $(call BuildPackage,gimmix)) |
| 45 |
