wok-current view gnome-keyring/receipt @ rev 25713

Up abiword (3.0.5), libwmf (0.2.13), fix wv url
author Stanislas Leduc <shann@slitaz.org>
date Fri Jun 14 11:35:21 2024 +0000 (2 months ago)
parents 6831608a1b2a
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-keyring"
4 VERSION="40.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A program that keep password and other secrets for users."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libgcrypt libtasn1 python dbus gtk+3"
14 BUILD_DEPENDS="libgcrypt-dev libtasn1-dev python-dev dbus-dev intltool file \
15 gtk+3-dev gcr-dev p11-kit-dev openssh docbook-xsl"
17 current_version()
18 {
19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
20 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --libdir=/usr/lib \
28 --libexecdir=/usr/lib/$PACKAGE \
29 --sysconfdir=/etc/gnome \
30 --disable-debug \
31 --disable-pam &&
32 make && make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib/$PACKAGE/devel $fs/usr/lib/pkcs11 $fs/usr/share
39 cp -a $install/etc $fs
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/lib/$PACKAGE/devel/*.so* $fs/usr/lib/$PACKAGE/devel
42 cp -a $install/usr/lib/pkcs11/*.so* $fs/usr/lib/pkcs11
43 for i in dbus-1 GConf glib-2.0
44 do
45 cp -a $install/usr/share/$i $fs/usr/share
46 done
48 # Remove devel files.
49 find $fs/usr/lib -name *.*a -exec rm -f {} \;
50 }