Makefile 1.0 KB

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:= xfsprogs
  5. PKG_VERSION:= 3.0.0
  6. PKG_RELEASE:= 1
  7. PKG_BUILDDEP+= e2fsprogs
  8. PKG_MD5SUM:= ec734f935ec87ebb8be890d29380a3e6
  9. PKG_DESCR:= Utilities to create and check XFS filesystems
  10. PKG_SECTION:= admin
  11. PKG_DEPENDS:= libuuid libpthread
  12. PKG_URL:= http://oss.sgi.com/projects/xfs
  13. PKG_SITES:= ftp://oss.sgi.com/projects/xfs/cmd_tars/ \
  14. ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,XFSPROGS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. AUTOTOOL_STYLE:= autoconf
  18. CONFIGURE_ARGS+= --enable-gettext=no \
  19. --with-gnu-ld
  20. CONFIGURE_ENV+= DEBUG=" " OPTIMIZER=" "
  21. ALL_TARGET=
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_XFSPROGS}/sbin
  24. ${CP} ${WRKINST}/usr/sbin/mkfs.xfs ${IDIR_XFSPROGS}/sbin/
  25. ${CP} ${WRKINST}/usr/sbin/xfs_repair ${IDIR_XFSPROGS}/sbin/
  26. include ${TOPDIR}/mk/pkg-bottom.mk