wok-stable diff miau/receipt @ rev 2308
Add dia
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Feb 25 12:20:15 2009 +0000 (2009-02-25) |
parents | |
children | 02bbaa9d12ba |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/miau/receipt Wed Feb 25 12:20:15 2009 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="miau" 1.7 +VERSION="0.6.5" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Another IRC-bouncer/proxy." 1.10 +MAINTAINER="christophe.paris@free.fr" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 +WEB_SITE="http://miau.sourceforge.net/" 1.13 +WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL" 1.14 + 1.15 +# Rules to configure and make the package. 1.16 +compile_rules() 1.17 +{ 1.18 + cd $src 1.19 + ./configure \ 1.20 + --prefix=/usr \ 1.21 + --infodir=/usr/share/info \ 1.22 + --mandir=/usr/share/man \ 1.23 + --docdir=/usr/share/doc \ 1.24 + $CONFIGURE_ARGS && 1.25 + make && 1.26 + make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + strip -s $fs/usr/bin/miau 1.35 + cp -a $_pkg/usr/share $fs/usr 1.36 +}