summaryrefslogtreecommitdiffstats
path: root/main/libgpg-error/APKBUILD
blob: 24cac436068a7e0f562851861072be9654ba31b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libgpg-error
pkgver=1.7
pkgrel=0
pkgdesc="Support library for libgcrypt"
url="http://www.gnupg.org"
license="LGPL"
depends="uclibc"
subpackages="$pkgname-dev $pkgname-lisp"
source="ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2
	nocxx.patch
	"

build () {
	cd "$srcdir"/$pkgname-$pkgver
	msg "Punting useless check for cpp..."
	patch configure < ../nocxx.patch || return 1

	./configure --prefix=/usr \
		--disable-nls

	make || return 1
	make -j1 DESTDIR="$pkgdir" install
}

lisp() {
	mkdir -p "$subpkgdir"/usr/
	mv "$pkgdir"/usr/share "$subpkgdir"/usr/share/
}

md5sums="62c0d09d1e76c5b6da8fff92314c4665  libgpg-error-1.7.tar.bz2
28513788ba4d556ccd538867dc6205ab  nocxx.patch"