wok view steadyflow/receipt @ rev 20936

updated fpm2 again (0.76.1 -> 0.79)
author Hans-G?nter Theisgen
date Sat Mar 02 16:28:51 2019 +0100 (2019-03-02)
parents 1d5099bdcfad
children 1bd2c6414e5a
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 sed -i 's|ListStore| Gtk.&|' Steadyflow/FileListController.vala
23 mkdir -p $DESTDIR/usr/share/man/man1
24 # gee-1.0 is old while gee-0.8 is latest ;)
25 sed -i 's|gee-1.0|gee-0.8|g; s|Gee-1.0|Gee-0.8|g' \
26 $(grep -li gee-1.0 $(find . -type f))
27 sed -i 's/exit(/GLib.Process.&/' Steadyflow/Services.vala
29 mkdir build
30 cd build
31 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
32 make
33 make install 2>&1 | grep -v gzip:
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p \
40 $fs/usr/share/applications \
41 $fs/usr/share/pixmaps \
42 $fs/usr/share/locale
43 cp -a $install/usr/bin $fs/usr
44 cp -a $install/usr/share/glib* $fs/usr/share
45 cp -a $install/usr/share/steadyflow $fs/usr/share
47 # localization
48 . $WOK/slitaz-i18n/stuff/locale-pack.conf
49 for lang in $LOCALE_PACK; do
50 langf=$install/usr/share/locale/$lang
51 [ -d $langf ] && cp -a $langf $fs/usr/share/locale && echo -n "$lang "
52 done
53 echo
54 }