wok annotate steadyflow/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents 165f2965ff38
children
rev   line source
al@14237 1 # SliTaz package receipt.
al@14237 2
al@14237 3 PACKAGE="steadyflow"
al@14237 4 VERSION="0.2.0"
al@14237 5 CATEGORY="x-window"
al@14237 6 SHORT_DESC="Simple download manager for GNOME"
al@14237 7 MAINTAINER="al.bobylev@gmail.com"
al@14237 8 LICENSE="GPL3"
al@14237 9 WEB_SITE="https://launchpad.net/steadyflow"
al@14237 10 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@14237 11 WGET_URL="https://launchpad.net/$PACKAGE/trunk/$VERSION/+download/$TARBALL"
al@14237 12 TAGS="gtk3"
al@14237 13
al@14237 14 DEPENDS="gtk+3 libgee libnotify-gtk3"
al@14237 15 BUILD_DEPENDS="wget cmake vala gtk+3-dev glib-dev libgee-dev libnotify-gtk3-dev"
al@14237 16
al@14237 17 BUGS="Not able to download anything. Gnome-VFS error?"
al@14237 18
pascal@24434 19 # What is the latest version available today?
pascal@24434 20 current_version()
pascal@24434 21 {
pascal@24434 22 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24434 23 sed '/Latest version is/!d;s|.*is ||'
pascal@24434 24 }
pascal@24434 25
al@14237 26 # Rules to configure and make the package.
al@14237 27 compile_rules()
al@14237 28 {
pascal@20601 29 sed -i 's|ListStore| Gtk.&|' Steadyflow/FileListController.vala
pascal@15096 30 mkdir -p $DESTDIR/usr/share/man/man1
al@14237 31 # gee-1.0 is old while gee-0.8 is latest ;)
al@14237 32 sed -i 's|gee-1.0|gee-0.8|g; s|Gee-1.0|Gee-0.8|g' \
al@14237 33 $(grep -li gee-1.0 $(find . -type f))
pascal@16663 34 sed -i 's/exit(/GLib.Process.&/' Steadyflow/Services.vala
al@14237 35
al@14237 36 mkdir build
al@14237 37 cd build
al@14237 38 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@14237 39 make
pascal@15173 40 make install 2>&1 | grep -v gzip:
al@14237 41 }
al@14237 42
al@14237 43 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14237 44 genpkg_rules()
al@14237 45 {
al@14237 46 mkdir -p \
al@14237 47 $fs/usr/share/applications \
al@14237 48 $fs/usr/share/pixmaps \
al@14237 49 $fs/usr/share/locale
al@14237 50 cp -a $install/usr/bin $fs/usr
al@14237 51 cp -a $install/usr/share/glib* $fs/usr/share
al@14237 52 cp -a $install/usr/share/steadyflow $fs/usr/share
al@14237 53
al@14237 54 # localization
al@14237 55 . $WOK/slitaz-i18n/stuff/locale-pack.conf
al@14237 56 for lang in $LOCALE_PACK; do
al@14237 57 langf=$install/usr/share/locale/$lang
al@14237 58 [ -d $langf ] && cp -a $langf $fs/usr/share/locale && echo -n "$lang "
al@14237 59 done
al@14237 60 echo
al@14237 61 }