41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
# Template file for 'gpgme'
|
|
pkgname=gpgme
|
|
version=1.3.1
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="--enable-fd-passing --disable-gpgsm-test --disable-gpgconf-test --disable-g13-test"
|
|
makedepends="libgpg-error-devel libassuan-devel gnupg"
|
|
short_desc="GnuPG Made Easy"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
homepage="http://www.gnupg.org/related_software/gpgme/"
|
|
distfiles="ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-$version.tar.bz2"
|
|
checksum=15ef27a875ae0d79d7446fd931deda11438e724ffbeac74449ed19cba23df4d4
|
|
long_desc="
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier
|
|
for applications. It provides a High-Level Crypto API for encryption,
|
|
decryption, signing, signature verification and key management. Currently it
|
|
uses GnuPG as its backend but the API isn't restricted to this engine; in fact
|
|
we have already developed a backend for CMS (S/MIME).
|
|
|
|
Because the direct use of GnuPG from an application can be a complicated
|
|
programming task, it is suggested that all software should try to use GPGME
|
|
instead. This way bug fixes or improvements can be done at a central place
|
|
and every application benefits from this."
|
|
|
|
gpgme-devel_package() {
|
|
depends="libgpg-error-devel libassuan-devel gpgme>=${version}"
|
|
short_desc="${short_desc} - development files"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/include
|
|
vmove usr/share
|
|
}
|
|
}
|
|
|
|
gpgme_package() {
|
|
depends="libassuan>=2.0.3 gnupg"
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|