wok-next view steadyflow/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="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"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://launchpad.net/$PACKAGE/trunk/$VERSION/+download/$TARBALL"
14 BUILD_DEPENDS="cmake vala gtk3-dev glib-dev libgee-dev libnotify-dev"
16 BUGS="Not able to download anything. Gnome-VFS error?"
18 compile_rules() {
19 mkdir -p $install/usr/share/man/man1
20 # gee-1.0 is old while gee-0.8 is latest ;-)
21 sed -i 's|gee-1.0|gee-0.8|g; s|Gee-1.0|Gee-0.8|g' \
22 $(grep -li gee-1.0 $(find . -type f))
23 sed -i 's/exit(/GLib.Process.&/' Steadyflow/Services.vala
25 mkdir build
26 cd build
27 cmake \
28 -DCMAKE_INSTALL_PREFIX=/usr \
29 .. &&
30 make &&
31 make install
32 }
34 genpkg_rules() {
35 copy @std *.mo
36 DEPENDS="gtk3 libgee libnotify"
37 TAGS="gtk3"
38 }