Makefile 973 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= ntfs-3g
  5. PKG_VERSION= 2009.4.4
  6. PKG_RELEASE= 1
  7. PKG_MD5SUM= e0b5c170f088a8d82968f0a6b34d31da
  8. PKG_DESCR:= ntfs filesystem driver with read and write support
  9. PKG_SECTION:= sys
  10. PKG_DEPENDS:= kmod-fuse-fs
  11. PKG_URL:= http://www.ntfs-3g.org
  12. PKG_SITES= http://www.ntfs-3g.org/
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,NTFS_3G,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ARGS+= --disable-ldconfig \
  17. --disable-library
  18. CONFIGURE_STYLE= gnu
  19. BUILD_STYLE= auto
  20. INSTALL_STYLE= auto
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_NTFS_3G}/{bin,sbin}
  23. ${CP} ${WRKINST}/bin/ntfs-3g ${IDIR_NTFS_3G}/bin
  24. ${CP} ${WRKINST}/sbin/mount.ntfs-3g ${IDIR_NTFS_3G}/sbin
  25. include ${TOPDIR}/mk/pkg-bottom.mk