blob: d74822ff8764f46b1732dead03a35d0b711adecc (
plain)
1 # Description: GNOME Keyring is a collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications.
2 # URL: https://gnome.org
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: desktop-file-utils docbook-xsl gcr3 gnome-common
5
6 name=gnome-keyring
7 version=42.1
8 release=2
9 source=(https://github.com/GNOME/gnome-keyring/archive/$version/$name-$version.tar.gz
10 0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch)
11
12 build() {
13 cd $name-$version
14
15 patch -Np1 -i $SRC/0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch
16
17 NOCONFIGURE=1 ./autogen.sh
18 ./configure --prefix=/usr \
19 --with-pam-dir=/lib/security \
20 --with-root-certs=/etc/ssl/certs \
21 --disable-static \
22 --disable-schemas-compile \
23 --disable-nls
24 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
25
26 make
27 make DESTDIR=$PKG install
28 }
|