26 lines
810 B
Plaintext
26 lines
810 B
Plaintext
# 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
|
|
# Depends on: gnome-common linux-pam p11-kit gcr gtk3 harfbuzz pango libepoxy desktop-file-utils docbook-xsl
|
|
|
|
name=gnome-keyring
|
|
version=42.1
|
|
release=1
|
|
source=(https://github.com/GNOME/gnome-keyring/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--with-pam-dir=/lib/security \
|
|
--with-root-certs=/etc/ssl/certs \
|
|
--disable-static \
|
|
--disable-schemas-compile \
|
|
--disable-nls
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|