diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-05-30 20:39:07 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-05-30 20:39:07 +0200 |
commit | ba3359722cbf8aa7b0ed39e1f81d1d74ec88fecd (patch) | |
tree | 10c726d162bc0ded85eb7aeacf8f246bd39ad63a /package/esound/Makefile | |
parent | bbd610f15a71b27c955175cb98392b114717fd47 (diff) |
optimize ipkg package management
- generate ipkg control file from PKG_* variables
- automatically install init scripts from ./files/*.init
set #PKG pkgname to set the binary package
- rename FWINIT -> INIT
- move postinst and conffiles meta data to ./files
- update the packages to the latest upstream version
- remove some unready or unused package (strongswan,..)
more cleanups needed after allmodconfig
Diffstat (limited to 'package/esound/Makefile')
-rw-r--r-- | package/esound/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/package/esound/Makefile b/package/esound/Makefile index 119532e97..6da76d2a6 100644 --- a/package/esound/Makefile +++ b/package/esound/Makefile @@ -6,25 +6,26 @@ include ${TOPDIR}/rules.mk PKG_NAME:= esound -PKG_VERSION:= 0.2.38 -PKG_RELEASE:= 5 -PKG_MD5SUM:= 77c4e9805a017fba06552487df3c6662 -MASTER_SITES:= ftp://ftp.gnome.org/pub/gnome/sources/esound/0.2/ +PKG_VERSION:= 0.2.41 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 3d8973ed87053d7acc1f4d44af2c4688 +PKG_DESCR:= Enlightened Sound Daemon +PKG_SECTION:= net +PKG_DEPENDS:= libaudiofile +PKG_URL:= http://www.tux.org/~ricdude/EsounD.html +PKG_SITES:= ftp://ftp.gnome.org/pub/gnome/sources/esound/0.2/ include ${TOPDIR}/mk/package.mk -$(eval $(call PKG_template,ESOUND,esound,${PKG_VERSION}-${PKG_RELEASE})) +$(eval $(call PKG_template,ESOUND,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) CONFIGURE_STYLE:= gnu BUILD_STYLE:= auto INSTALL_STYLE:= auto post-install: - ${INSTALL_DIR} ${IDIR_ESOUND}/etc/init.d - ${INSTALL_DIR} ${IDIR_ESOUND}/usr/bin - ${INSTALL_DIR} ${IDIR_ESOUND}/usr/lib + ${INSTALL_DIR} ${IDIR_ESOUND}/usr/bin ${IDIR_ESOUND}/usr/lib ${INSTALL_BIN} ${WRKINST}/usr/bin/esd ${IDIR_ESOUND}/usr/bin/ $(CP) $(WRKINST)/usr/lib/libesd.so.* $(IDIR_ESOUND)/usr/lib/ - $(INSTALL_DATA) ./files/esd.init $(IDIR_ESOUND)/etc/init.d/esd include ${TOPDIR}/mk/pkg-bottom.mk |