wok view cryptkeeper/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 241fb98cab1c
children a66f312c374b
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptkeeper"
4 VERSION="0.9.5"
5 CATEGORY="security"
6 SHORT_DESC="Linux system tray applet that manages EncFS encrypted folders"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/tomm/cryptkeeper"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://src.fedoraproject.org/lookaside/pkgs/rpms/$PACKAGE/$TARBALL/d02918b2058854177d2f59b837c2743f/$TARBALL"
13 DEPENDS="gtk+ GConf encfs"
14 BUILD_DEPENDS="gtk+-dev GConf-dev xorg-libX11-dev"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE/commits/master 2>/dev/null | \
20 sed '/bump version to/!d;s|.* to ||;s|<.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 mv po/ru_RU.gmo po/ru.gmo
27 patch -p1 -i $stuff/cryptkeeper.patch
28 export LDFLAGS="-lX11"
30 ./configure $CONFIGURE_ARGS && make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }