wok view workerfm/receipt @ rev 23737

updated workerfm (2.19.6 -> 4.1.0)
author Hans-G?nter Theisgen
date Fri May 01 10:15:49 2020 +0100 (2020-05-01)
parents 441ae485f53b
children 02fd259b363c
line source
1 # SliTaz package receipt.
3 PACKAGE="workerfm"
4 VERSION="4.1.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A light and easy to use file manager."
7 MAINTAINER="yuripourre@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.boomerangsworld.de/cms/worker/"
11 SOURCE="worker"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$WEB_SITE/downloads/$TARBALL"
15 DEPENDS="avfs dbus-glib freetype gcc83-lib-base hal libmagic xorg-libX11
16 xorg-libXft xorg-libXinerama xorg-xmessage"
17 BUILD_DEPENDS="avfs-dev dbus-glib-dev freetype-dev gcc83 hal-dev libmagic-dev
18 xorg-libX11-dev xorg-libXft-dev xorg-libXinerama-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export CC=gcc-83
24 export CXX=g++-83
26 ./configure \
27 --disable-silent-rules \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/share $fs/usr
40 }