wok-current annotate libgnome-keyring/receipt @ rev 24253
updated perl-template-toolkit (3.008 -> 3.010)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 09:54:37 2022 +0100 (2022-01-02) |
parents | 57fc61c8b313 |
children |
rev | line source |
---|---|
pascal@11205 | 1 # SliTaz package receipt. |
pascal@11205 | 2 |
pascal@11205 | 3 PACKAGE="libgnome-keyring" |
Hans-G?nter@23036 | 4 VERSION="3.12.0" |
pascal@11205 | 5 CATEGORY="x-window" |
Hans-G?nter@23036 | 6 SHORT_DESC="A libray that keeps password and other secrets for users." |
pascal@11205 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15004 | 8 LICENSE="LGPL2" |
pascal@20671 | 9 WEB_SITE="https://www.gnome.org" |
Hans-G?nter@23036 | 10 |
Hans-G?nter@23036 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@11205 | 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" |
Hans-G?nter@23036 | 13 |
Hans-G?nter@23036 | 14 DEPENDS="dbus glib libgcrypt" |
Hans-G?nter@23036 | 15 BUILD_DEPENDS="dbus-dev glib-dev intltool libgcrypt-dev" |
Hans-G?nter@23036 | 16 |
pascal@19099 | 17 HOST_ARCH="i486 arm" |
pascal@11205 | 18 |
pascal@24111 | 19 current_version() |
pascal@24111 | 20 { |
pascal@24111 | 21 wget -O - $(dirname $WGET_URL) 2>/dev/null | \ |
pascal@24111 | 22 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q |
pascal@24111 | 23 } |
pascal@24111 | 24 |
pascal@11205 | 25 # Rules to configure and make the package. |
pascal@11205 | 26 compile_rules() |
pascal@11205 | 27 { |
Hans-G?nter@23036 | 28 ./configure \ |
Hans-G?nter@23036 | 29 --libexecdir=/usr/lib/$PACKAGE \ |
Hans-G?nter@23036 | 30 --sysconfdir=/etc/gnome \ |
Hans-G?nter@23036 | 31 --disable-pam \ |
gokhlayeh@11573 | 32 $CONFIGURE_ARGS && |
Hans-G?nter@23036 | 33 make && |
Hans-G?nter@23036 | 34 make install |
pascal@11205 | 35 } |
pascal@11205 | 36 |
pascal@11205 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11205 | 38 genpkg_rules() |
pascal@11205 | 39 { |
pascal@11205 | 40 mkdir -p $fs/usr/lib |
Hans-G?nter@23036 | 41 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@11205 | 42 } |