blob: abab88e1f99df6dae17aa2128ce3b67fdcb890d8 (
plain)
1 # Description: GNOME keyring client library
2 # URL: https://live.gnome.org/GnomeKeyring/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: dbus libgcrypt gobject-introspection intltool
5
6 name=libgnome-keyring
7 version=3.12.0
8 release=2
9 source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-nls \
15 --disable-vala
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/share/{gtk-doc,locale}
20 }
|