wok-next view gnome-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 f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gnome-keyring"
4 VERSION="2.32.1"
5 CATEGORY="x-window"
6 SHORT_DESC="A program that keep password and other secrets for users"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
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 libtasn1-dev python-dev dbus-dev intltool gtk2-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 sed -i -e 's|<glib.h>|&\n#include <libtasn1.h>|' \
19 -e 's|const struct static_struct_asn|const ASN1_ARRAY_TYPE|' \
20 egg/egg-asn1x.h
22 ./configure \
23 --libexecdir=/usr/lib/$PACKAGE \
24 --sysconfdir=/etc/gnome \
25 --disable-pam &&
26 fix libtool &&
27 make &&
28 make install
29 }
31 genpkg_rules() {
32 case $PACKAGE in
33 gnome-keyring)
34 copy @std
35 DEPENDS="libgcrypt libtasn1 python dbus gtk2"
36 ;;
37 *-dev)
38 copy @dev
39 ;;
40 esac
41 }