wok annotate echinus/receipt @ rev 9310
Up: leocad to 0.75.1. Now using source code. Fixed leocad-pieces also.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Mar 17 18:56:00 2011 +0000 (2011-03-17) |
parents | 1e90dc8e2f19 |
children | d1768332cee0 |
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 |
devl547@5632 | 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 |