2006-07-22 23:00:19 +00:00
|
|
|
#
|
2007-09-06 17:21:41 +00:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-07-22 23:00:19 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libtasn1
|
2007-09-06 17:21:41 +00:00
|
|
|
PKG_VERSION:=1.1
|
|
|
|
PKG_RELEASE:=1
|
2006-07-22 23:00:19 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.gnutls.org/pub/gnutls/libtasn1/ \
|
|
|
|
ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/libtasn1/ \
|
|
|
|
http://www.mirrors.wiretapped.net/security/network-security/gnutls/libtasn1/ \
|
|
|
|
ftp://ftp.mirrors.wiretapped.net/pub/security/network-security/gnutls/libtasn1/ \
|
|
|
|
http://josefsson.org/gnutls/releases/libtasn1/
|
2007-09-06 17:21:41 +00:00
|
|
|
PKG_MD5SUM:=93b43cc5013bda4d8bf64508f1566c54
|
2006-07-22 23:00:19 +00:00
|
|
|
|
2007-12-27 02:12:04 +00:00
|
|
|
PKG_FIXUP = libtool
|
|
|
|
|
2006-07-22 23:00:19 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libtasn1
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=An ASN.1 and DER structures manipulation library
|
|
|
|
URL:=ftp://ftp.gnutls.org/pub/gnutls/libtasn1/
|
|
|
|
endef
|
|
|
|
|
2007-09-06 17:21:41 +00:00
|
|
|
define Package/libtasn1/description
|
|
|
|
This is a library for Abstract Syntax Notation One (ASN.1) and
|
|
|
|
Distinguish Encoding Rules (DER) manipulation.
|
|
|
|
endef
|
|
|
|
|
2007-12-27 02:12:04 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2006-10-28 22:43:08 +00:00
|
|
|
--enable-shared \
|
2007-12-27 02:12:04 +00:00
|
|
|
--enable-static
|
2006-07-22 23:00:19 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
2007-09-06 17:21:41 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
|
2006-07-22 23:00:19 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2007-10-07 03:20:26 +00:00
|
|
|
mkdir -p $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libtasn1-config $(1)/usr/bin/
|
2007-10-07 03:20:26 +00:00
|
|
|
mkdir -p $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libtasn1.h $(1)/usr/include/
|
|
|
|
mkdir -p $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtasn1.{a,so*} $(1)/usr/lib/
|
|
|
|
$(SED) 's,-I$$$${prefix}/include,,g' $(1)/usr/bin/libtasn1-config
|
|
|
|
$(SED) 's,-L$$$${exec_prefix}/lib,,g' $(1)/usr/bin/libtasn1-config
|
2006-07-22 23:00:19 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/libtasn1/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtasn1.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2006-07-22 23:00:19 +00:00
|
|
|
$(eval $(call BuildPackage,libtasn1))
|