wok-current annotate echinus/receipt @ rev 13640
Up: efreet (1.7.1)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Nov 16 00:05:37 2012 +0100 (2012-11-16) |
parents | 59009b1c6878 |
children | fcdd50638150 |
rev | line source |
---|---|
devl547@5632 | 1 # SliTaz package receipt. |
devl547@5632 | 2 |
devl547@5632 | 3 PACKAGE="echinus" |
devl547@5632 | 4 VERSION="0.4.0" |
devl547@5632 | 5 CATEGORY="x-window" |
devl547@5632 | 6 SHORT_DESC="A window manager for X in the spirit of dwm" |
devl547@5632 | 7 MAINTAINER="devl547@gmail.com" |
devl547@5632 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@5632 | 9 WEB_SITE="http://www.rootshell.be/~polachok/code/" |
devl547@5632 | 10 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@8940 | 11 BUILD_DEPENDS="xorg-libX11-dev xorg-libXft-dev xorg-libXrandr-dev" |
devl547@5632 | 12 DEPENDS="xorg-libX11 xorg-libXft" |
devl547@5632 | 13 |
devl547@5632 | 14 # Rules to configure and make the package. |
devl547@5632 | 15 compile_rules() |
devl547@5632 | 16 { |
devl547@5632 | 17 cd $src |
slaxemulator@9700 | 18 cp $stuff/config.mk config.mk |
devl547@5632 | 19 make && |
devl547@5632 | 20 make DESTDIR=$PWD/_pkg install |
devl547@5632 | 21 } |
devl547@5632 | 22 |
devl547@5632 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5632 | 24 genpkg_rules() |
devl547@5632 | 25 { |
devl547@5632 | 26 mkdir -p $fs/usr/share |
devl547@5632 | 27 cp -a $_pkg/usr/bin $fs/usr |
devl547@5632 | 28 cp -a $_pkg/usr/share/examples $fs/usr/share |
devl547@5632 | 29 } |
devl547@5632 | 30 |