Makefile 967 B

123456789101112131415161718192021222324252627282930313233
  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:= libid3tag
  5. PKG_VERSION:= 0.15.1b
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= e5808ad997ba32c498803822078748c3
  8. PKG_DESCR:= an ID3 tag manipulation library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= zlib
  11. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=mad/}
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,LIBID3TAG,libid3tag,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ARGS+= --disable-debugging \
  16. --disable-profiling
  17. BUILD_STYLE= auto
  18. INSTALL_STYLE= auto confprog
  19. pre-install:
  20. ${INSTALL_DIR} ${WRKINST}/usr/lib/pkgconfig
  21. ${CP} ./files/id3tag.pc ${WRKINST}/usr/lib/pkgconfig
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_LIBID3TAG}/usr/lib
  24. ${CP} ${WRKINST}/usr/lib/libid3tag.so.* ${IDIR_LIBID3TAG}/usr/lib/
  25. include ${TOPDIR}/mk/pkg-bottom.mk