blob: 39a0652ef249f3c86184b4fd9dc71b8eed6391f6 (
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: gnome-common linux-pam p11-kit gcr gtk3 harfbuzz pango libepoxy desktop-file-utils docbook-xsl
5
6 name=gnome-keyring
7 version=42.1
8 release=1
9 source=(https://github.com/GNOME/gnome-keyring/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 NOCONFIGURE=1 ./autogen.sh
15 ./configure --prefix=/usr \
16 --with-pam-dir=/lib/security \
17 --with-root-certs=/etc/ssl/certs \
18 --disable-static \
19 --disable-schemas-compile \
20 --disable-nls
21 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
22
23 make
24 make DESTDIR=$PKG install
25 }
|