libs/libnl-tiny: drop Build/Prepare rule in favor of default one
[openwrt/openwrt.git] / package / libs / libnl-tiny / Makefile
1 #
2 # Copyright (C) 2006-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:=libnl-tiny
11 PKG_VERSION:=0.1
12 PKG_RELEASE:=5
13
14 PKG_LICENSE:=LGPL-2.1
15 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/libnl-tiny
20 SECTION:=libs
21 CATEGORY:=Libraries
22 TITLE:=netlink socket library
23 endef
24
25 define Package/libnl-tiny/description
26 This package contains a stripped down version of libnl
27 endef
28
29 TARGET_CFLAGS += $(FPIC)
30
31 define Build/Compile
32 $(MAKE) -C $(PKG_BUILD_DIR) \
33 $(TARGET_CONFIGURE_OPTS) \
34 CFLAGS="$(TARGET_CFLAGS)" \
35 all
36 endef
37
38 define Build/InstallDev
39 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/include/libnl-tiny
40 $(CP) $(PKG_BUILD_DIR)/include/* $(1)/usr/include/libnl-tiny
41 $(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/
42 $(CP) ./files/libnl-tiny.pc $(1)/usr/lib/pkgconfig
43 endef
44
45 define Package/libnl-tiny/install
46 $(INSTALL_DIR) $(1)/usr/lib
47 $(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/
48 endef
49
50 $(eval $(call BuildPackage,libnl-tiny))