wok view vorbisgain/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
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 }