Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. CONFIGURE_STYLE= autoconf gnu
  18. CONFIGURE_ARGS+= --enable-gettext=no \
  19. --with-gnu-ld
  20. CONFIGURE_ENV+= DEBUG=" " OPTIMIZER=" "
  21. BUILD_STYLE= auto
  22. INSTALL_STYLE= auto
  23. ALL_TARGET=
  24. post-install:
  25. ${INSTALL_DIR} ${IDIR_XFSPROGS}/sbin
  26. ${CP} ${WRKINST}/usr/sbin/mkfs.xfs ${IDIR_XFSPROGS}/sbin/
  27. ${CP} ${WRKINST}/usr/sbin/xfs_repair ${IDIR_XFSPROGS}/sbin/
  28. include ${TOPDIR}/mk/pkg-bottom.mk