bemused: Compile fixes
[openwrt/svn-archive/archive.git] / utils / bemused / Makefile
1 #
2 # Copyright (C) 2008-2010 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:=2
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 PKG_BUILD_PARALLEL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21 include $(INCLUDE_DIR)/nls.mk
22
23 define Package/bemusedlinuxserver
24 SECTION:=utils
25 CATEGORY:=Utilities
26 DEPENDS:=+bluez-libs +glib1 +mpd +libstdcpp $(ICONV_DEPENDS)
27 TITLE:=Bemused linux server
28 URL:=http://bemused-lnx-mpdhack.origo.ethz.ch/
29 endef
30
31 define Package/bemusedlinuxserver/description
32 Bemused is a system which allows you to control your music collection
33 from your phone, using Bluetooth.
34 This is the MPD hack version.
35 Check http://jamse.sourceforge.net/ for a mobile phone client.
36 endef
37
38 EXTRA_CPPFLAGS:= \
39 -I$(STAGING_DIR)/usr/include/glib-1.2 \
40 -I$(STAGING_DIR)/usr/lib/glib/include \
41 -I$(ICONV_PREFIX)/include
42
43 EXTRA_LDFLAGS:= \
44 -L$(ICONV_PREFIX)/lib
45
46 define Build/Compile
47 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
48 $(TARGET_CONFIGURE_OPTS) \
49 CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \
50 CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \
51 LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" \
52 CPPFLAGS="$(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \
53 LDLIBS="-lbluetooth -lglib -liconv"
54 endef
55
56 define Package/bemusedlinuxserver/install
57 $(INSTALL_DIR) $(1)/usr/sbin
58 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bemusedlinuxserver $(1)/usr/sbin/
59 $(INSTALL_DIR) $(1)/etc
60 $(INSTALL_CONF) ./files/bemused.conf $(1)/etc/bemused.conf
61 $(INSTALL_CONF) ./files/bemused-bookmarks $(1)/etc/bemused-bookmarks
62 $(INSTALL_DIR) $(1)/etc/init.d
63 $(INSTALL_BIN) ./files/bemused.init $(1)/etc/init.d/bemused
64 endef
65
66 $(eval $(call BuildPackage,bemusedlinuxserver))