wok view vorbisgain/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents 76b72f1ad63c
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="vorbisgain"
4 VERSION="0.37"
5 CATEGORY="multimedia"
6 SHORT_DESC="Analyzes and adjusts volume on ogg vorbis files."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sjeng.org/vorbisgain.html"
11 WGET_URL="http://sjeng.org/ftp/vorbis/$TARBALL"
13 DEPENDS="libogg libvorbis"
14 BUILD_DEPENDS="libogg-dev libvorbis-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }