wok view steadyflow/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents de5c76813d78
children 1d5099bdcfad
line source
1 # SliTaz package receipt.
3 PACKAGE="steadyflow"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Simple download manager for GNOME"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://launchpad.net/steadyflow"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://launchpad.net/$PACKAGE/trunk/$VERSION/+download/$TARBALL"
12 TAGS="gtk3"
14 DEPENDS="gtk+3 libgee libnotify-gtk3"
15 BUILD_DEPENDS="wget cmake vala gtk+3-dev glib-dev libgee-dev libnotify-gtk3-dev"
17 BUGS="Not able to download anything. Gnome-VFS error?"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 mkdir -p $DESTDIR/usr/share/man/man1
23 # gee-1.0 is old while gee-0.8 is latest ;)
24 sed -i 's|gee-1.0|gee-0.8|g; s|Gee-1.0|Gee-0.8|g' \
25 $(grep -li gee-1.0 $(find . -type f))
27 mkdir build
28 cd build
29 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
30 make
31 make install 2>&1 | grep -v gzip:
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p \
38 $fs/usr/share/applications \
39 $fs/usr/share/pixmaps \
40 $fs/usr/share/locale
41 cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/share/glib* $fs/usr/share
43 cp -a $install/usr/share/steadyflow $fs/usr/share
45 # localization
46 . $WOK/slitaz-i18n/stuff/locale-pack.conf
47 for lang in $LOCALE_PACK; do
48 langf=$install/usr/share/locale/$lang
49 [ -d $langf ] && cp -a $langf $fs/usr/share/locale && echo -n "$lang "
50 done
51 echo
52 }