wok annotate miau/receipt @ rev 16328

mercurial: fix receipt (Thanks Alexandr) and ARM up slitaz-configs
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:44:57 2014 +0200 (2014-04-10)
parents 02bbaa9d12ba
children 01a570aaca8b
rev   line source
pascal@1752 1 # SliTaz package receipt.
pascal@1752 2
pascal@1752 3 PACKAGE="miau"
pascal@1752 4 VERSION="0.6.5"
pascal@1752 5 CATEGORY="network"
pascal@1752 6 SHORT_DESC="Another IRC-bouncer/proxy."
pascal@1752 7 MAINTAINER="christophe.paris@free.fr"
pascal@15584 8 LICENSE="GPL2"
pascal@1752 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@1752 10 WEB_SITE="http://miau.sourceforge.net/"
pascal@1752 11 WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL"
pascal@1752 12
pascal@1752 13 # Rules to configure and make the package.
pascal@1752 14 compile_rules()
pascal@1752 15 {
pascal@1752 16 cd $src
pascal@1752 17 ./configure \
pascal@1752 18 --prefix=/usr \
pascal@1752 19 --infodir=/usr/share/info \
pascal@1752 20 --mandir=/usr/share/man \
pascal@1752 21 --docdir=/usr/share/doc \
pascal@1752 22 $CONFIGURE_ARGS &&
pascal@1752 23 make &&
pascal@15584 24 make DESTDIR=$DESTDIR install
pascal@1752 25 }
pascal@1752 26
pascal@1752 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1752 28 genpkg_rules()
pascal@1752 29 {
pascal@1752 30 mkdir -p $fs/usr
pascal@15584 31 cp -a $install/usr/bin $fs/usr
pascal@15584 32 cp -a $install/usr/share $fs/usr
pascal@1752 33 }