30 lines
872 B
Plaintext
30 lines
872 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: desktop-file-utils gcr3 gnome-common
|
|
# Optional: docbook-xsl
|
|
|
|
name=gnome-keyring
|
|
version=46.1
|
|
release=1
|
|
source=(https://github.com/GNOME/gnome-keyring/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
prt-get isinst docbook-xsl || PKGMK_GKR+=' --disable-doc'
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr $PKGMK_GKR \
|
|
--sysconfdir=/etc \
|
|
--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
|
|
}
|