summaryrefslogtreecommitdiff
path: root/package/libao
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-25 06:45:38 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-25 06:45:38 +0100
commitd194d7bac90be1373db95a1b6d897a228454ebe9 (patch)
tree964ce77b1fc7e86b1aa15c91f25f292fb49bb7d0 /package/libao
parent5422aefc0351871b4fbfb0fe0b92f3ddedf672d3 (diff)
enable esd output for libao, enable mpd ao output plugin via package flavour
Diffstat (limited to 'package/libao')
-rw-r--r--package/libao/Makefile14
1 files changed, 9 insertions, 5 deletions
diff --git a/package/libao/Makefile b/package/libao/Makefile
index 116769b9a..6592afeec 100644
--- a/package/libao/Makefile
+++ b/package/libao/Makefile
@@ -5,24 +5,28 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= libao
PKG_VERSION:= 0.8.8
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= b92cba3cbcf1ee9bc221118a85d23dcd
PKG_DESCR:= A cross platform audio library
PKG_SECTION:= libs
+PKG_DEPENDS:= esound
+PKG_BUILDDEP+= esound
PKG_URL:= http://www.xiph.org/ao
PKG_SITES:= http://downloads.xiph.org/releases/ao/
include ${TOPDIR}/mk/package.mk
-$(eval $(call PKG_template,LIBAO,libao,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,LIBAO,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-CONFIGURE_ARGS+= --disable-esd \
+CONFIGURE_ARGS+= --enable-esd \
--disable-arts \
--disable-nas \
--disable-polyp
post-install:
- ${INSTALL_DIR} ${IDIR_LIBAO}/usr/lib
+ ${INSTALL_DIR} ${IDIR_LIBAO}/usr/lib/ao/plugins-2
${CP} ${WRKINST}/usr/lib/libao.so* ${IDIR_LIBAO}/usr/lib/
-
+ ${CP} ${WRKINST}/usr/lib/ao/plugins-2/*.so \
+ ${IDIR_LIBAO}/usr/lib/ao/plugins-2
+
include ${TOPDIR}/mk/pkg-bottom.mk