wok-4.x annotate normalize/receipt @ rev 11940
evince-doc: local html help only. Evince goes to www for help
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Wed Feb 29 21:48:25 2012 -0800 (2012-02-29) |
parents | e1b0990690d7 |
children |
rev | line source |
---|---|
devl547@5665 | 1 # SliTaz package receipt. |
devl547@5665 | 2 |
devl547@5665 | 3 PACKAGE="normalize" |
devl547@5665 | 4 VERSION="0.7.7" |
devl547@5665 | 5 CATEGORY="multimedia" |
devl547@5665 | 6 SHORT_DESC="Audio file volume normalizer" |
devl547@5665 | 7 MAINTAINER="devl547@gmail.com" |
devl547@5665 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
devl547@5665 | 9 WEB_SITE="http://normalize.nongnu.org/" |
devl547@5665 | 10 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL" |
pascal@6109 | 11 BUILD_DEPENDS="libmad-dev audiofile-dev" |
pascal@6109 | 12 DEPENDS="libmad audiofile" |
devl547@5665 | 13 |
devl547@5665 | 14 # Rules to configure and make the package. |
devl547@5665 | 15 compile_rules() |
devl547@5665 | 16 { |
devl547@5665 | 17 cd $src |
devl547@5665 | 18 ./configure --prefix=/usr --sysconfdir=/etc \ |
devl547@5665 | 19 --libexecdir=/usr/bin --mandir=/usr/share/man \ |
devl547@5665 | 20 $CONFIGURE_ARGS && |
devl547@5665 | 21 make && |
devl547@5665 | 22 make DESTDIR=$PWD/_pkg install |
devl547@5665 | 23 } |
devl547@5665 | 24 |
devl547@5665 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5665 | 26 genpkg_rules() |
devl547@5665 | 27 { |
devl547@5665 | 28 mkdir -p $fs/usr/ |
devl547@5665 | 29 cp -a $_pkg/usr/bin $fs/usr |
devl547@5665 | 30 } |
pascal@6109 | 31 |