wok annotate workerfm/receipt @ rev 24737
updated libevdev and libevdev-dev (1.9.0 -> 1.12.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 09:39:00 2022 +0100 (2022-03-16) |
parents | 02fd259b363c |
children |
rev | line source |
---|---|
yuripourre@16911 | 1 # SliTaz package receipt. |
yuripourre@16911 | 2 |
yuripourre@16911 | 3 PACKAGE="workerfm" |
Hans-G?nter@23737 | 4 VERSION="4.1.0" |
yuripourre@16911 | 5 CATEGORY="system-tools" |
yuripourre@16911 | 6 SHORT_DESC="A light and easy to use file manager." |
yuripourre@16911 | 7 MAINTAINER="yuripourre@gmail.com" |
Hans-G?nter@23737 | 8 LICENSE="GPL2" |
Hans-G?nter@23737 | 9 WEB_SITE="http://www.boomerangsworld.de/cms/worker/" |
Hans-G?nter@23737 | 10 |
yuripourre@16911 | 11 SOURCE="worker" |
yuripourre@16911 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
yuripourre@16911 | 13 WGET_URL="$WEB_SITE/downloads/$TARBALL" |
Hans-G?nter@23737 | 14 |
Hans-G?nter@23741 | 15 DEPENDS="avfs dbus-glib freetype gcc83-lib-base hal |
Hans-G?nter@23741 | 16 libmagic xorg-libX11 xorg-libXft xorg-libXinerama |
Hans-G?nter@23741 | 17 xorg-xmessage" |
Hans-G?nter@23741 | 18 BUILD_DEPENDS="avfs-dev dbus-glib-dev freetype-dev gcc83 |
Hans-G?nter@23741 | 19 hal-dev libmagic-dev liblzma-dev util-linux-uuid-dev |
Hans-G?nter@23737 | 20 xorg-libX11-dev xorg-libXft-dev xorg-libXinerama-dev" |
yuripourre@16911 | 21 |
pascal@24427 | 22 # What is the latest version available today? |
pascal@24427 | 23 current_version() |
pascal@24427 | 24 { |
pascal@24427 | 25 wget -O - ${WGET_URL%/*} 2>/dev/null | \ |
pascal@24427 | 26 sed '/worker-[0-9]/!d;s|.*worker-||;s|.tar.*||' | sort -Vr | sed q |
pascal@24427 | 27 } |
pascal@24427 | 28 |
yuripourre@16911 | 29 # Rules to configure and make the package. |
yuripourre@16911 | 30 compile_rules() |
yuripourre@16911 | 31 { |
Hans-G?nter@23737 | 32 export CC=gcc-83 |
Hans-G?nter@23737 | 33 export CXX=g++-83 |
Hans-G?nter@23737 | 34 |
Hans-G?nter@23737 | 35 ./configure \ |
Hans-G?nter@23737 | 36 --disable-silent-rules \ |
yuripourre@16911 | 37 $CONFIGURE_ARGS && |
Hans-G?nter@23737 | 38 make && |
Hans-G?nter@23737 | 39 make install |
yuripourre@16911 | 40 } |
yuripourre@16911 | 41 |
yuripourre@16911 | 42 # Rules to gen a SliTaz package suitable for Tazpkg. |
yuripourre@16911 | 43 genpkg_rules() |
yuripourre@16911 | 44 { |
yuripourre@16911 | 45 mkdir -p $fs/usr |
Hans-G?nter@23737 | 46 |
Hans-G?nter@23737 | 47 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@23737 | 48 cp -a $install/usr/share $fs/usr |
yuripourre@16911 | 49 } |