diff options
Diffstat (limited to 'package/libs/libnl-tiny/.svn')
-rw-r--r-- | package/libs/libnl-tiny/.svn/entries | 68 | ||||
-rw-r--r-- | package/libs/libnl-tiny/.svn/text-base/Makefile.svn-base | 57 |
2 files changed, 125 insertions, 0 deletions
diff --git a/package/libs/libnl-tiny/.svn/entries b/package/libs/libnl-tiny/.svn/entries new file mode 100644 index 0000000..2255941 --- /dev/null +++ b/package/libs/libnl-tiny/.svn/entries @@ -0,0 +1,68 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/package/libs/libnl-tiny +svn://svn.openwrt.org/openwrt + + + +2012-12-22T18:56:01.032328Z +34864 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +files +dir + +src +dir + +Makefile +file + + + + +2013-03-17T12:13:08.000000Z +06cd63aa4ddd972c14c94f6f3449f163 +2012-10-19T15:34:28.915431Z +33861 +hcg + + + + + + + + + + + + + + + + + + + + + +1240 + diff --git a/package/libs/libnl-tiny/.svn/text-base/Makefile.svn-base b/package/libs/libnl-tiny/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..9639ac3 --- /dev/null +++ b/package/libs/libnl-tiny/.svn/text-base/Makefile.svn-base @@ -0,0 +1,57 @@ +# +# Copyright (C) 2006-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libnl-tiny +PKG_VERSION:=0.1 +PKG_RELEASE:=3 + +PKG_LICENSE:=GPLv2 LGPLv2.1 +PKG_LICENSE_FILES:= + +PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> + +include $(INCLUDE_DIR)/package.mk + +define Package/libnl-tiny + SECTION:=libs + CATEGORY:=Libraries + TITLE:=netlink socket library +endef + +define Package/libnl-tiny/description + This package contains a stripped down version of libnl +endef + +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + +TARGET_CFLAGS += $(FPIC) + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + all +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/include/libnl-tiny + $(CP) $(PKG_BUILD_DIR)/include/* $(1)/usr/include/libnl-tiny + $(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/ + $(CP) ./files/libnl-tiny.pc $(1)/usr/lib/pkgconfig +endef + +define Package/libnl-tiny/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libnl-tiny)) |