2 # Copyright (C) 2006, 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
16 PKG_SOURCE_URL
:=ftp
://ftp.gnutls.org
/pub
/gnutls
/opencdk
/ \
17 ftp
://ftp.gnupg.org
/gcrypt
/alpha
/gnutls
/opencdk
/ \
18 http
://www.mirrors.wiretapped.net
/security
/network-security
/gnutls
/opencdk
/ \
19 ftp
://ftp.mirrors.wiretapped.net
/pub
/security
/network-security
/gnutls
/opencdk
/ \
20 http
://josefsson.org
/gnutls
/releases
/opencdk
/
21 PKG_MD5SUM
:=813d62d7afe7b2c2d8f3df0a6c9d9331
23 include $(INCLUDE_DIR
)/package.mk
25 define Package
/libopencdk
28 DEPENDS
:=+libgcrypt zlib
29 TITLE
:=The Open Crypto Development Kit library
30 URL
:=ftp
://ftp.gnutls.org
/pub
/gnutls
/opencdk
/
33 define Package
/libopencdk
/description
34 This library provides basic parts of the OpenPGP message format.
35 For reference
, please read the rfc2440.txt in the doc
/ directory.
36 Due to some possible security problems
, the library also implements
37 parts of draft-ietf-openpgp-rfc2440bis-08.txt. If you want to exchange
38 messages with earlier PGP version
< 7, you should use the compat mode.
41 TARGET_CFLAGS
+= $(FPIC
)
43 define Build
/Configure
44 $(call Build
/Configure
/Default
, \
47 --with-libgcrypt-prefix
="$(STAGING_DIR)/usr" \
52 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
53 DESTDIR
="$(PKG_INSTALL_DIR)" \
57 define Build
/InstallDev
59 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/opencdk-config
$(1)/usr
/bin
/
60 mkdir
-p
$(1)/usr
/include
61 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/opencdk.h
$(1)/usr
/include/
63 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libopencdk.
{a
,so
*} $(1)/usr
/lib
/
66 define Package
/libopencdk
/install
67 $(INSTALL_DIR
) $(1)/usr
/lib
68 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libopencdk.so.
* $(1)/usr
/lib
/
71 $(eval
$(call BuildPackage
,libopencdk
))