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