wok-undigest view libmatekeyring/receipt @ rev 1255
copied recipe for ncurses from cooking wok
author | Hans-G?nter Theisgen |
---|---|
date | Sat Aug 13 10:43:24 2022 +0100 (2022-08-13) |
parents | 3f059c1d154b |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="libmatekeyring"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MATE Desktop keyring library."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://mate-desktop.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="http://pub.mate-desktop.org/releases/1.4/$TARBALL"
12 DEPENDS="glib mate-common libgcrypt dbus"
13 BUILD_DEPENDS="glib-dev mate-common libgcrypt-dev dbus-dev gtk-doc \
14 autoconf automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh \
21 --sysconfdir=/etc \
22 --libexecdir=/usr/lib/mate-keyring \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }