From 3a025deb84600bb9f5b9c7f0b4f434251b704b37 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Fri, 20 Jun 2014 17:25:49 +0200 Subject: [PATCH] Backported and update the libtasn1 package. Signed-off-by: Nikos Mavrogiannopoulos --- libs/libtasn1/Makefile | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 libs/libtasn1/Makefile diff --git a/libs/libtasn1/Makefile b/libs/libtasn1/Makefile new file mode 100644 index 0000000000..64f3833e31 --- /dev/null +++ b/libs/libtasn1/Makefile @@ -0,0 +1,56 @@ +# +# Copyright (C) 2005-2008 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:=libtasn1 +PKG_VERSION:=3.6 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/libtasn1 +PKG_MD5SUM:=6ed38e161e11013054f2a2bb4c4da449 + +#PKG_FIXUP:=autoreconf +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/libtasn1 + SECTION:=libs + CATEGORY:=Libraries + TITLE:=An ASN.1 and DER structures manipulation library + URL:=ftp://ftp.gnu.org/gnu/libtasn1/ +endef + +define Package/libtasn1/description + This is a library for Abstract Syntax Notation One (ASN.1) and + Distinguish Encoding Rules (DER) manipulation. +endef + +TARGET_CFLAGS += $(FPIC) + +CONFIGURE_ARGS += \ + --enable-shared \ + --enable-static + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/libtasn1.h $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtasn1.{a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtasn1*.pc $(1)/usr/lib/pkgconfig/ +endef + +define Package/libtasn1/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtasn1.so.* $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libtasn1))