1
0

Makefile 1.1 KB

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