Makefile 852 B

1234567891011121314151617181920212223242526272829303132
  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. MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=mad/}
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,LIBID3TAG,libid3tag,${PKG_VERSION}-${PKG_RELEASE}))
  13. CONFIGURE_STYLE= gnu
  14. CONFIGURE_ARGS+= --disable-debugging \
  15. --disable-profiling
  16. BUILD_STYLE= auto
  17. INSTALL_STYLE= auto confprog
  18. pre-install:
  19. ${INSTALL_DIR} ${WRKINST}/usr/lib/pkgconfig
  20. ${CP} ./files/id3tag.pc ${WRKINST}/usr/lib/pkgconfig
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_LIBID3TAG}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libid3tag.so.* ${IDIR_LIBID3TAG}/usr/lib/
  24. include ${TOPDIR}/mk/pkg-bottom.mk