wok-current annotate vorbisgain/receipt @ rev 13497
Up: spacefm (0.8.0) With an autostart desktop file to replace pcmanfm desktop handler and can automount media using the kernel polling (no udisks or gvfs)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Oct 13 10:49:28 2012 +0200 (2012-10-13) |
parents | |
children | 76b72f1ad63c |
rev | line source |
---|---|
pascal@13246 | 1 # SliTaz package receipt. |
pascal@13246 | 2 |
pascal@13246 | 3 PACKAGE="vorbisgain" |
pascal@13246 | 4 VERSION="0.37" |
pascal@13246 | 5 CATEGORY="multimedia" |
pascal@13246 | 6 SHORT_DESC="Analyzes and adjusts volume on ogg vorbis files." |
pascal@13246 | 7 MAINTAINER="paul@slitaz.org" |
pascal@13246 | 8 DEPENDS="libogg libvorbis" |
pascal@13246 | 9 BUILD_DEPENDS="libogg-dev libvorbis-dev" |
pascal@13246 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@13246 | 11 WEB_SITE="http://sjeng.org/vorbisgain.html" |
pascal@13246 | 12 WGET_URL="http://sjeng.org/ftp/vorbis/$TARBALL" |
pascal@13246 | 13 |
pascal@13246 | 14 # Rules to configure and make the package. |
pascal@13246 | 15 compile_rules() |
pascal@13246 | 16 { |
pascal@13246 | 17 cd $src |
pascal@13246 | 18 ./configure \ |
pascal@13246 | 19 --prefix=/usr \ |
pascal@13246 | 20 $CONFIGURE_ARGS && |
pascal@13246 | 21 make && make DESTDIR=$DESTDIR install |
pascal@13246 | 22 } |
pascal@13246 | 23 |
pascal@13246 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13246 | 25 genpkg_rules() |
pascal@13246 | 26 { |
pascal@13246 | 27 mkdir -p $fs/usr |
pascal@13246 | 28 cp -a $_pkg/usr/bin $fs/usr |
pascal@13246 | 29 } |
pascal@13246 | 30 |