wok annotate mpc/receipt @ rev 2184

Up: galculator (1.3.4)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 08 22:45:35 2009 +0100 (2009-02-08)
parents
children e954083139e9
rev   line source
paul@1376 1 # SliTaz package receipt.
paul@1376 2
paul@1376 3 PACKAGE="mpc"
paul@1376 4 VERSION="0.12.1"
paul@1376 5 CATEGORY="multimedia"
paul@1376 6 SHORT_DESC="A command line tool to interface MPD."
paul@1376 7 MAINTAINER="paul@slitaz.org"
paul@1376 8 DEPENDS="mpd"
paul@1376 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@1376 10 WEB_SITE="http://www.musicpd.org/mpc.shtml"
paul@1376 11 WGET_URL="http://musicpd.org/uploads/files/$TARBALL"
paul@1376 12
paul@1376 13 # Rules to configure and make the package.
paul@1376 14 compile_rules()
paul@1376 15 {
paul@1376 16 cd $src
paul@1376 17 ./configure --prefix=/usr --infodir=/usr/share/info \
paul@1376 18 --mandir=/usr/share/man $CONFIGURE_ARGS
paul@1376 19 make
paul@1376 20 make DESTDIR=$PWD/_pkg install
paul@1376 21 }
paul@1376 22
paul@1376 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1376 24 genpkg_rules()
paul@1376 25 {
paul@1376 26 mkdir -p $fs/usr/share/mpc
paul@1376 27 cp -a $_pkg/usr/bin $fs/usr
paul@1376 28 cp -a $_pkg/usr/share/doc/$PACKAGE $fs/usr/share
paul@1376 29 }
paul@1376 30