20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
# Description: IPC library for the GnuPG components
|
|
# URL: https://www.gnupg.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libgpg-error
|
|
|
|
name=libassuan
|
|
version=2.5.6
|
|
release=2
|
|
source=(https://www.gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-static \
|
|
--disable-doc
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|