blob: a7d81f7f028671bc887dc9fc1bcc43f2d39f2049 (
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
|
#!/bin/mkpkg
# description: Common error values for GnuPG components
# url: https://www.gnupg.org/software/libgpg-error
name=libgpg-error
version=1.61
release=1
depends=()
source=(https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-$version.tar.bz2)
sha256sums=(
"7a85413f2bc354f4f8aa832b718af122e48965e9e0eb9012ee659c13c6385c93"
)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-static \
--disable-nls \
--disable-doc
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
|