Makefile 955 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= esound
  5. PKG_VERSION:= 0.2.41
  6. PKG_RELEASE:= 1
  7. PKG_BUILDDEP+= libaudiofile
  8. PKG_MD5SUM:= 3d8973ed87053d7acc1f4d44af2c4688
  9. PKG_DESCR:= Enlightened Sound Daemon
  10. PKG_SECTION:= net
  11. PKG_DEPENDS:= libaudiofile
  12. PKG_URL:= http://www.tux.org/~ricdude/EsounD.html
  13. PKG_SITES:= ftp://ftp.gnome.org/pub/gnome/sources/esound/0.2/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,ESOUND,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE:= gnu
  17. BUILD_STYLE:= auto
  18. INSTALL_STYLE:= auto
  19. post-install:
  20. ${INSTALL_DIR} ${IDIR_ESOUND}/usr/bin ${IDIR_ESOUND}/usr/lib
  21. ${INSTALL_BIN} ${WRKINST}/usr/bin/esd ${IDIR_ESOUND}/usr/bin/
  22. $(CP) $(WRKINST)/usr/lib/libesd.so.* $(IDIR_ESOUND)/usr/lib/
  23. include ${TOPDIR}/mk/pkg-bottom.mk