[packages] massive change: replace occurences of -I$(STAGING_DIR)/{include,usr/includ...
[openwrt/svn-archive/archive.git] / utils / bemused / Makefile
1 #
2 # Copyright (C) 2008-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=bemused-mpd
11 PKG_VERSION:=r062
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.origo.ethz.ch/bemused-lnx-mpdhack/526
16 PKG_MD5SUM:=aed8b41aed530e9177e43d9bebad10b7
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/bemusedlinuxserver
21 SECTION:=utils
22 CATEGORY:=Utilities
23 DEPENDS:=+bluez-libs +glib1 +mpd +libstdcpp +libiconv
24 TITLE:=Bemused linux server
25 URL:=http://bemused-lnx-mpdhack.origo.ethz.ch/
26 endef
27
28 define Package/bemusedlinuxserver/description
29 Bemused is a system which allows you to control your music collection
30 from your phone, using Bluetooth.
31 This is the MPD hack version.
32 Check http://jamse.sourceforge.net/ for a mobile phone client.
33 endef
34
35 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 $(TARGET_CONFIGURE_OPTS) \
38 CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS)" \
39 LDFLAGS="$(TARGET_LDFLAGS) " \
40 CPPFLAGS="$(TARGET_CPPFLAGS)" \
41 INCL="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/glib-1.2 -I$(STAGING_DIR)/usr/lib/glib/include -I$(STAGING_DIR)/usr/lib/libiconv/include" \
42 MYLIBS="-lbluetooth -lglib -L$(STAGING_DIR)/usr/lib/libiconv/lib -liconv"
43 $(STRIP) $(PKG_BUILD_DIR)/bemusedlinuxserver
44 endef
45
46 define Package/bemusedlinuxserver/install
47 $(INSTALL_DIR) $(1)/usr/sbin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bemusedlinuxserver $(1)/usr/sbin/
49 $(INSTALL_DIR) $(1)/etc
50 $(INSTALL_CONF) ./files/bemused.conf $(1)/etc/bemused.conf
51 $(INSTALL_CONF) ./files/bemused-bookmarks $(1)/etc/bemused-bookmarks
52 $(INSTALL_DIR) $(1)/etc/init.d
53 $(INSTALL_BIN) ./files/bemused.init $(1)/etc/init.d/bemused
54 endef
55
56 $(eval $(call BuildPackage,bemusedlinuxserver))