[packages/pulseaudio] make pa depending on alsa
[packages.git] / sound / pulseaudio / Makefile
1 #
2 # Copyright (C) 2007-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:=pulseaudio
11 PKG_VERSION:=0.9.22
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://0pointer.de/lennart/projects/pulseaudio/
16 PKG_MD5SUM:=ca85ab470669b05e100861654cf5eb3c
17
18 PKG_BUILD_DEPENDS:=intltool/host
19
20 PKG_FIXUP = libtool
21
22 PKG_INSTALL = 1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 #TODO: split pulse into executable and library (or even better into several libraries since they're used as loadable modules, so not linked into)
27 define Package/pulseaudio
28   SECTION:=sound
29   CATEGORY:=Sound
30   DEPENDS:=+libspeexdsp +libgdbm +liboil +libsndfile +libatomicops +libltdl +dbus +libpthread +librt +libintl +libiconv +alsa-lib @BROKEN
31   TITLE:=Network sound server
32   URL:=http://www.pulseaudio.org
33 endef
34
35 define Package/pa-tools
36   SECTION:=sound
37   CATEGORY:=Sound
38   DEPENDS:=+libgdbm +libsndfile +pulseaudio #+libpulse
39   TITLE:=Tools for Pulseaudio
40   URL:=http://www.pulseaudio.org
41 endef
42
43 CONFIGURE_ARGS += \
44         --with-system-user=root \
45         --with-system-group=root \
46         --with-realtime-group=root \
47         --with-access-group=root \
48         --without-x \
49         --enable-alsa \
50         --disable-dbus \
51         --disable-hal \
52         --disable-gconf \
53         --disable-tcpwrap \
54         --disable-nls \
55         --disable-solaris \
56         --disable-glib2 \
57         --disable-jack \
58         --disable-asyncns \
59         --disable-polkit \
60         --disable-samplerate \
61         --disable-lirc \
62         --disable-bluez \
63         --without-caps
64
65
66 CONFIGURE_VARS += \
67         PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
68
69 #SUPP_LIBS:=-L$(STAGING_DIR)/usr/lib/libintl/lib -L$(STAGING_DIR)/usr/lib/libiconv/lib
70 TARGET_CFLAGS += -std=gnu99
71
72 define Package/pulseaudio/install
73         $(INSTALL_DIR) \
74                 $(1)/usr/bin \
75                 $(1)/usr/lib \
76                 $(1)/usr/lib/pulse-$(PKG_VERSION)/modules \
77                 $(1)/etc/pulse
78
79         $(INSTALL_BIN) \
80                 $(PKG_INSTALL_DIR)/usr/bin/pulseaudio \
81                 $(1)/usr/bin/pulseaudio
82
83         $(INSTALL_CONF) \
84                 $(PKG_INSTALL_DIR)/etc/pulse/* \
85                 $(1)/etc/pulse
86
87         $(CP) \
88                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
89                 $(1)/usr/lib/
90
91         $(CP) \
92                 $(PKG_INSTALL_DIR)/usr/lib/pulse-$(PKG_VERSION)/modules/*.so \
93                 $(1)/usr/lib/pulse-$(PKG_VERSION)/modules/
94 endef
95
96 define Package/pa-tools/install
97         $(INSTALL_DIR) \
98                 $(1)/usr/bin
99
100         $(INSTALL_BIN) \
101                 $(PKG_INSTALL_DIR)/usr/bin/pa* \
102                 $(1)/usr/bin/
103 endef
104
105 $(eval $(call BuildPackage,pulseaudio))
106 $(eval $(call BuildPackage,pa-tools))