Makefile 666 B

12345678910111213141516171819202122
  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:= libnl
  5. PKG_VERSION:= 1.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= ae970ccd9144e132b68664f98e7ceeb1
  8. PKG_DESCR:= Netlink library
  9. PKG_SECTION:= libs
  10. PKG_SITES:= http://downloads.openwrt.org/sources/
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,LIBNL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. post-install:
  14. ${INSTALL_DIR} ${IDIR_LIBNL}/usr/lib
  15. ${CP} ${WRKINST}/usr/lib/libnl.so* ${IDIR_LIBNL}/usr/lib
  16. include ${TOPDIR}/mk/pkg-bottom.mk