wok view libgnome-keyring/receipt @ rev 19467

slitaz-i18n: give translations from yad-gtk2 package.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 25 01:31:43 2016 +0300 (2016-10-25)
parents a00bf44ed23d
children d57d733bbb57
line source
1 # SliTaz package receipt.
3 PACKAGE="libgnome-keyring"
4 VERSION="2.32.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A libray that keep password and other secrets for users."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libgcrypt dbus glib"
15 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --libexecdir=/usr/lib/$PACKAGE \
23 --sysconfdir=/etc/gnome \
24 --disable-pam \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }