wok view workerfm/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents e7c729ae0681
children 83b97236db32
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
16 libmagic xorg-libX11 xorg-libXft xorg-libXinerama
17 xorg-xmessage"
18 BUILD_DEPENDS="avfs-dev dbus-glib-dev freetype-dev gcc83
19 hal-dev libmagic-dev liblzma-dev util-linux-uuid-dev
20 xorg-libX11-dev xorg-libXft-dev xorg-libXinerama-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 export CC=gcc-83
26 export CXX=g++-83
28 ./configure \
29 --disable-silent-rules \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/share $fs/usr
42 }