Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / libs / libaio / Makefile
1 #
2 # Copyright (C) 2007-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libaio
11 PKG_VERSION:=0.3.112
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://releases.pagure.org/libaio
16 PKG_HASH:=ab0462f2c9d546683e5147b1ce9c195fe95d07fac5bf362f6c01637955c3b492
17
18 PKG_MAINTAINER:=
19 PKG_LICENSE:=LGPL-2.1-only
20 PKG_LICENSE_FILES:=COPYING
21
22 PKG_BUILD_PARALLEL:=1
23 PKG_USE_MIPS16:=0
24 PKG_INSTALL:=1
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/libaio
29 SECTION:=libs
30 CATEGORY:=Libraries
31 TITLE:=Linux kernel AIO interface access library
32 URL:=http://lse.sourceforge.net/io/aio.html
33 endef
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/include
37 $(CP) $(PKG_INSTALL_DIR)/usr/include/libaio.h $(1)/usr/include/
38 $(INSTALL_DIR) $(1)/usr/lib
39 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libaio.{a,so*} $(1)/usr/lib/
40 endef
41
42 define Package/libaio/install
43 $(INSTALL_DIR) $(1)/usr/lib
44 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libaio.so.* $(1)/usr/lib/
45 endef
46
47 $(eval $(call BuildPackage,libaio))