wok diff sgmixer/receipt @ rev 20815

cvs: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 18 16:14:25 2019 +0100 (2019-02-18)
parents
children 535c806240cc
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sgmixer/receipt	Mon Feb 18 16:14:25 2019 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="sgmixer"
     1.7 +VERSION="0.3"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="sGmixer is simple audio mixer with an easy-to-use GTK 2 interface"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +#WEB_SITE="https://web.archive.org/web/20120617124707/http://openfmi.net/projects/sgmixer/"
    1.14 +WEB_SITE="http://freshmeat.sourceforge.net/projects/sgmixer/"
    1.15 +#WGET_URL="http://openfmi.net/frs/download.php/2/$TARBALL"
    1.16 +WGET_URL="https://crux.ster.zone/distfiles/$TARBALL"
    1.17 +TAGS="mixer"
    1.18 +
    1.19 +DEPENDS="gtk+"
    1.20 +BUILD_DEPENDS="gtk+-dev pkg-config"
    1.21 +
    1.22 +# Rules to configure and make the package.
    1.23 +compile_rules()
    1.24 +{
    1.25 +	sed -i 's|\$(prefix)|$(DESTDIR)&|' Makefile.in
    1.26 +	[ -e /usr/lib/pkgconfig/libpng.pc ] ||
    1.27 +		ln -s libpng12.pc /usr/lib/pkgconfig/libpng.pc
    1.28 +	./configure --prefix=/usr \
    1.29 +		$CONFIGURE_ARGS &&
    1.30 +	make &&
    1.31 +	make DESTDIR=$DESTDIR install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs/usr
    1.38 +	cp -a $install/usr/bin $fs/usr
    1.39 +}