wok-next view libgnome-keyring/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libgnome-keyring"
4 VERSION="2.32.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Keep password and other secrets for users"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://www.gnome.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --libexecdir=/usr/lib/$PACKAGE \
20 --sysconfdir=/etc/gnome \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 libgnome-keyring)
30 copy @std
31 DEPENDS="dbus glib libgcrypt"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="libgnome-keyring glib-dev"
36 ;;
37 esac
38 }