blob: 14d67808c219802a8b2fe18554b79f7d5daacbd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: GNU gardien des donnees privees
# URL: http://www.gnupg.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libusbx, curl, libldap
# Run on: libusbx,curl,libldap
name=gnupg1
version=1.4.12
release=1
source=(ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-$version.tar.bz2)
build() {
cd gnupg-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib
make
make DESTDIR=$PKG install
rm $PKG/usr/share/info/dir
rm -r $PKG/usr/share/man/man1/gpg-zip.1
}
|