Makefile 962 B

1234567891011121314151617181920212223242526272829303132
  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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= audit
  5. PKG_VERSION:= 2.6.7
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 8923917332daa7833bbc0c1d9eb012167093fbad000da4a9630fb3356aff8cdc
  8. PKG_DESCR:= audit library
  9. PKG_SECTION:= libs/misc
  10. PKG_URL:= http://people.redhat.com/sgrubb/audit
  11. PKG_SITES:= http://people.redhat.com/sgrubb/audit/
  12. PKG_OPTS:= dev
  13. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,AUDIT,audit,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  16. CONFIGURE_ARGS+= --without-python \
  17. --without-python3 \
  18. --without-libcap-ng \
  19. --disable-zos-remote
  20. audit-install:
  21. $(INSTALL_DIR) $(IDIR_AUDIT)/usr/lib
  22. $(CP) $(WRKINST)/usr/lib/libaudit*.so* \
  23. $(IDIR_AUDIT)/usr/lib
  24. include $(ADK_TOPDIR)/mk/pkg-bottom.mk