summaryrefslogtreecommitdiffstats
path: root/gnome-keyring/Pkgfile
blob: 0067fc874e6ebe8889953928f3e7cd02f3920c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Description: Demon gerant les mots de passe et autres secrets des utilisateurs 
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: libtasn1, dconf, gtk3, libgcrypt, p11-kit, gcr
# Run on: libtasn1,dconf,gtk3,libgcrypt,p11-kit,gcr

name=gnome-keyring
version=3.4.1
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz
	nopass.patch)

build() {
        cd $name-$version
	patch -p1 < ../nopass.patch
        ./configure --prefix=/usr \
		--libexecdir=/usr/lib/gnome-keyring \
		--sysconfdir=/etc \
		--localstatedir=/var \
		--disable-schemas-compile \
		--with-pam-dir=/lib/security \
		--with-dbus-services=/usr/share/dbus-1/services \
		--with-root-certs=/etc/ssl/certs \
		--disable-gtk-doc
        make
        make DESTDIR=$PKG install
        rm -rf $PKG/usr/share/gtk-doc
}