wok view miau/receipt @ rev 11681

Up: grep to 2.10. It depends on pcre.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 18 08:15:31 2012 -0500 (2012-02-18)
parents 5cca1d5310fc
children 3765f181a6d5
line source
1 # SliTaz package receipt.
3 PACKAGE="miau"
4 VERSION="0.6.5"
5 CATEGORY="network"
6 SHORT_DESC="Another IRC-bouncer/proxy."
7 MAINTAINER="christophe.paris@free.fr"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://miau.sourceforge.net/"
10 WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 --docdir=/usr/share/doc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
32 }