Makefile 1.1 KB

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