contrib/libsecret/Pkgfile

30 lines
754 B
Plaintext
Raw Normal View History

2013-04-04 13:20:10 +02:00
# Description: Library for storing and retrieving passwords and other secrets
# URL: https://live.gnome.org/Libsecret
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Danny Rawlins, monster dot romster at gmail dot com
# Depends on: gobject-introspection intltool libgcrypt vala
2013-04-04 13:20:10 +02:00
name=libsecret
version=0.18
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/$version/$name-$version.tar.xz
secret-tool.1)
2013-04-04 13:20:10 +02:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-manpages \
--disable-nls \
--disable-dependency-tracking
2013-04-04 13:20:10 +02:00
make
make DESTDIR=$PKG install
install -D -m 0644 $SRC/secret-tool.1 $PKG/usr/man/man1/secret-tool.1
2013-04-04 13:20:10 +02:00
rm -r $PKG/usr/share/{gtk-doc,locale}
}