Makefile 768 B

123456789101112131415161718192021222324
  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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= libogg
  5. PKG_VERSION:= 1.3.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= ca25d8da0ddfc8c6cbbf78d847a209fe
  8. PKG_DESCR:= ogg bitstream handling library
  9. PKG_SECTION:= libs/audio
  10. PKG_URL:= http://www.xiph.org/ogg
  11. PKG_SITES:= http://downloads.xiph.org/releases/ogg/
  12. PKG_OPTS:= dev
  13. include ${ADK_TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,LIBOGG,libogg,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  15. libogg-install:
  16. ${INSTALL_DIR} ${IDIR_LIBOGG}/usr/lib
  17. ${CP} ${WRKINST}/usr/lib/libogg.so* ${IDIR_LIBOGG}/usr/lib
  18. include ${ADK_TOPDIR}/mk/pkg-bottom.mk