forked from ports/contrib
22 lines
727 B
Plaintext
22 lines
727 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=3.36.0
|
||
|
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-schemas-compile \
|
||
|
--disable-nls
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|