Makefile 972 B

1234567891011121314151617181920212223242526272829303132333435
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= moc
  7. PKG_VERSION:= 2.4.4
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 647c770a5542a4ae5437386807a89796
  10. MASTER_SITES:= ftp://ftp.daper.net/pub/soft/moc/stable/
  11. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,MOC,moc,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
  14. CONFIGURE_STYLE:= gnu
  15. CONFIGURE_ARGS+= --without-jack \
  16. --without-oss \
  17. --without-musepack \
  18. --without-speex \
  19. --without-sndfile
  20. BUILD_STYLE:= auto
  21. INSTALL_STYLE:= auto
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_MOC}/usr/bin
  24. ${INSTALL_DIR} ${IDIR_MOC}/usr/lib/moc/decoder_plugins
  25. ${CP} ${WRKINST}/usr/lib/moc/decoder_plugins/*.so \
  26. ${IDIR_MOC}/usr/lib/moc/decoder_plugins
  27. ${INSTALL_BIN} ${WRKINST}/usr/bin/mocp ${IDIR_MOC}/usr/bin/
  28. include ${TOPDIR}/mk/pkg-bottom.mk