Makefile 976 B

123456789101112131415161718192021222324252627282930
  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:= libnfnetlink
  5. PKG_VERSION:= 0.0.41
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 5d844ea1f557bad0364d5b85cd10c796
  8. PKG_DESCR:= the low-level library for netfilter related kernel/userspace communication
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:=
  11. PKG_URL:= http://www.netfilter.org/projects/libnfnetlink/
  12. PKG_SITES:= http://www.netfilter.org/projects/libnfnetlink/files/
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,LIBNFNETLINK,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE:= gnu
  17. BUILD_STYLE:= auto
  18. INSTALL_STYLE:= auto
  19. post-install:
  20. $(INSTALL_DIR) $(IDIR_LIBNFNETLINK)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/libnfnetlink.* $(IDIR_LIBNFNETLINK)/usr/lib/
  22. include ${TOPDIR}/mk/pkg-bottom.mk