28 lines
633 B
Plaintext
28 lines
633 B
Plaintext
# Description: Libraries for cryptographic UIs and accessing PKCS#11 modules.
|
|
# URL: https://developer.gnome.org/gcr/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gnupg gtk3 libepoxy p11-kit util-linux
|
|
|
|
name=gcr
|
|
version=3.16.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-update-icon-cache \
|
|
--disable-update-mime \
|
|
--disable-nls
|
|
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{locale,gtk-doc}
|
|
}
|