Fresh pull from upstream
[librecmc/librecmc.git] / package / libs / libmnl / Makefile
1 #
2 # Copyright (C) 2011-2012 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:=libmnl
11 PKG_VERSION:=1.0.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:= \
16         http://www.netfilter.org/projects/libmnl/files \
17         ftp://ftp.netfilter.org/pub/libmnl
18 PKG_HASH:=171f89699f286a5854b72b91d06e8f8e3683064c5901fb09d954a9ab6f551f81
19
20 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
21
22 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1
24 PKG_LICENSE:=LGPL-2.1+
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/libmnl
29   SECTION:=libs
30   CATEGORY:=Libraries
31   TITLE:=Minimalistic user-space library for Netlink
32   URL:=http://www.netfilter.org/projects/libmnl/
33 endef
34
35 define Package/libmnl/description
36  libmnl is a minimalistic user-space library oriented to Netlink developers.
37  There are a lot of common tasks in parsing, validating, constructing of
38  both the Netlink header and TLVs that are repetitive and easy to get wrong.
39  This library aims to provide simple helpers that allows you to re-use code
40  and to avoid re-inventing the wheel. The main features of this library are:
41  .
42  * Small: the shared library requires around 30KB for an x86-based computer.
43  .
44  * Simple: this library avoids complexity and elaborated abstractions that
45    tend to hide Netlink details.
46  .
47  * Easy to use: the library simplifies the work for Netlink-wise developers.
48    It provides functions to make socket handling, message building, validating,
49    parsing and sequence tracking, easier.
50  .
51  * Easy to re-use: you can use the library to build your own abstraction layer
52    on top of this library.
53  .
54  * Decoupling: the interdependency of the main bricks that compose the library
55    is reduced, i.e. the library provides many helpers, but the programmer is not
56    forced to use them.
57 endef
58
59 CONFIGURE_ARGS+= \
60         --enable-shared \
61         --enable-static \
62
63 define Build/InstallDev
64         $(INSTALL_DIR) $(1)/usr/include
65         $(CP) $(PKG_INSTALL_DIR)/usr/include/libmnl $(1)/usr/include/
66         $(INSTALL_DIR) $(1)/usr/lib
67         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmnl.{a,so*} $(1)/usr/lib/
68         $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
69         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libmnl.pc $(1)/usr/lib/pkgconfig/
70 endef
71
72 define Package/libmnl/install
73         $(INSTALL_DIR) $(1)/usr/lib
74         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmnl.so.* $(1)/usr/lib/
75 endef
76
77 $(eval $(call BuildPackage,libmnl))