wok annotate echinus/receipt @ rev 8833

Fix: tazdev receipt
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 24 16:18:46 2011 +0100 (2011-02-24)
parents
children 59009b1c6878
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"
devl547@5632 11 BUILD_DEPENDS="xorg-libX11-dev xorg-libXft-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