[packages] gpgme: update to 1.4.3

Signed-off-by: Peter Wagner <tripolar@gmx.at>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@38583 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
tripolar 2013-10-30 01:14:25 +00:00
parent a0265f5020
commit d7067becba

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2011 OpenWrt.org # Copyright (C) 2013 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -8,14 +8,13 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=gpgme PKG_NAME:=gpgme
PKG_VERSION:=1.3.1 PKG_VERSION:=1.4.3
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=ftp://ftp.gnupg.org/gcrypt/gpgme/ PKG_SOURCE_URL:=ftp://ftp.gnupg.org/gcrypt/gpgme/
PKG_MD5SUM:=90afa8436ce2b2683c001c824bd22601 PKG_MD5SUM:=334e524cffa8af4e2f43ae8afe585672
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1 PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
@ -24,18 +23,23 @@ define Package/libgpgme
SECTION:=libs SECTION:=libs
CATEGORY:=Libraries CATEGORY:=Libraries
TITLE:=GnuPG Made Easy library TITLE:=GnuPG Made Easy library
DEPENDS:=+libassuan +libpthread
URL:=http://www.gnupg.org/ URL:=http://www.gnupg.org/
DEPENDS:=+gnupg +libassuan +libpthread
endef endef
define Package/libgpgme/description define Package/libgpgme/description
GPGME (GnuPG Made Easy) is a C language library that allows to add GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for
support for cryptography to a program. It is designed to make access to applications. It provides a High-Level Crypto API for encryption, decryption, signing,
public key crypto engines like GnuPG or GpgSM easier for applications. signature verification and key management. Currently it uses GnuPG as its backend but
GPGME provides a high-level crypto API for encryption, decryption, the API isn't restricted to this engine; in fact we have already developed a backend
signing, signature verification and key management. for CMS (S/MIME).
endef endef
ifdef CONFIG_USE_UCLIBC
CONFIGURE_VARS += \
LIBS="-largp"
endif
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--enable-shared \ --enable-shared \
--enable-static \ --enable-static \