diff options
Diffstat (limited to 'package/libaio/Makefile')
-rw-r--r-- | package/libaio/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/libaio/Makefile b/package/libaio/Makefile new file mode 100644 index 000000000..1dbeeee19 --- /dev/null +++ b/package/libaio/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= libaio +PKG_VERSION:= 0.3.109 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 435a5b16ca6198eaf01155263d855756 +PKG_DESCR:= Asynchronous I/O library +PKG_SECTION:= libs +PKG_URL:= http://www.kernel.org +PKG_SITES:= http://openadk.org/distfiles/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBAIO,libaio,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +XAKE_FLAGS+= prefix='${WRKINST}/usr' + + +libaio-install: + $(INSTALL_DIR) $(IDIR_LIBAIO)/usr/lib + $(CP) $(WRKINST)/usr/lib/libaio*so* \ + $(IDIR_LIBAIO)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |