wok view echinus/receipt @ rev 7967

Fix: libwebkit needs -j1 to compile well
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 17 17:39:27 2011 +0100 (2011-01-17)
parents
children 59009b1c6878
line source
1 # SliTaz package receipt.
3 PACKAGE="echinus"
4 VERSION="0.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A window manager for X in the spirit of dwm"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.rootshell.be/~polachok/code/"
10 WGET_URL="$WEB_SITE/$TARBALL"
11 BUILD_DEPENDS="xorg-libX11-dev xorg-libXft-dev"
12 DEPENDS="xorg-libX11 xorg-libXft"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 cp ../stuff/config.mk config.mk
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/examples $fs/usr/share
29 }