2020-06-14 23:12:31 +00:00
# Description: GNOME Keyring is a collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications.
# URL: https://gnome.org
# Maintainer: Tim Biermann, tbier at posteo dot de
2022-12-28 13:49:39 +00:00
# Depends on: desktop-file-utils docbook-xsl gcr3 gnome-common
2020-06-14 23:12:31 +00:00
name=gnome-keyring
2022-05-24 10:45:22 +02:00
version=42.1
2022-12-28 13:49:39 +00:00
release=2
source=(https://github.com/GNOME/gnome-keyring/archive/$version/$name-$version.tar.gz
0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch)
2020-06-14 23:12:31 +00:00
build() {
cd $name-$version
2022-05-22 10:58:08 +02:00
2022-12-28 13:49:39 +00:00
patch -Np1 -i $SRC/0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch
2020-06-14 23:12:31 +00:00
NOCONFIGURE=1 ./autogen.sh
./configure --prefix=/usr \
--with-pam-dir=/lib/security \
--with-root-certs=/etc/ssl/certs \
2022-05-22 10:58:08 +02:00
--disable-static \
2020-06-14 23:12:31 +00:00
--disable-schemas-compile \
--disable-nls
2022-05-22 10:58:08 +02:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
2020-06-14 23:12:31 +00:00
make
make DESTDIR=$PKG install
}