Makefile 951 B

12345678910111213141516171819202122232425262728293031
  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:= 2014.2.15
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= f11d563816249d730a00498983485f3a
  8. PKG_DESCR:= ntfs filesystem driver
  9. PKG_SECTION:= fs
  10. PKG_DEPENDS:= kmod-fuse-fs
  11. PKG_URL:= http://tuxera.com
  12. PKG_SITES:= http://tuxera.com/opensource/
  13. DISTFILES:= ${PKG_NAME}_ntfsprogs-${PKG_VERSION}.tgz
  14. WRKDIST= ${WRKDIR}/${PKG_NAME}_ntfsprogs-${PKG_VERSION}
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,NTFS_3G,ntfs-3g,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_ARGS+= --disable-ldconfig \
  18. --disable-library
  19. ntfs-3g-install:
  20. ${INSTALL_DIR} ${IDIR_NTFS_3G}/bin
  21. ${INSTALL_BIN} ${WRKINST}/bin/ntfs-3g ${IDIR_NTFS_3G}/bin
  22. cd ${WRKINST}/bin && ln -sf ntfs-3g mount.ntfs-3g
  23. include ${TOPDIR}/mk/pkg-bottom.mk