wok-6.x rev 20706
Add sgmixer & zmixer
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Feb 06 13:08:02 2019 +0100 (2019-02-06) |
parents | 5b64f26b1311 |
children | f5a6002b316b |
files | file/receipt libmagic-dev/receipt libmagic/receipt python-magic/receipt sgmixer/receipt zmixer/receipt |
line diff
1.1 --- a/file/receipt Wed Feb 06 10:00:41 2019 +0100 1.2 +++ b/file/receipt Wed Feb 06 13:08:02 2019 +0100 1.3 @@ -7,7 +7,7 @@ 1.4 MAINTAINER="erjo@slitaz.org" 1.5 LICENSE="BSD" 1.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.7 -WEB_SITE="http://www.darwinsys.com/file/" 1.8 +WEB_SITE="https://darwinsys.com/file/" 1.9 WGET_URL="ftp://ftp.astron.com/pub/file/$TARBALL" 1.10 HOST_ARCH="i486 arm" 1.11
2.1 --- a/libmagic-dev/receipt Wed Feb 06 10:00:41 2019 +0100 2.2 +++ b/libmagic-dev/receipt Wed Feb 06 13:08:02 2019 +0100 2.3 @@ -6,7 +6,7 @@ 2.4 SHORT_DESC="File type determination library using 'magic' numbers (development)" 2.5 MAINTAINER="erjo@slitaz.org" 2.6 LICENSE="BSD" 2.7 -WEB_SITE="http://www.darwinsys.com/file/" 2.8 +WEB_SITE="https://darwinsys.com/file/" 2.9 WANTED="file" 2.10 HOST_ARCH="i486 arm" 2.11
3.1 --- a/libmagic/receipt Wed Feb 06 10:00:41 2019 +0100 3.2 +++ b/libmagic/receipt Wed Feb 06 13:08:02 2019 +0100 3.3 @@ -6,7 +6,7 @@ 3.4 SHORT_DESC="File type determination library using 'magic' numbers" 3.5 MAINTAINER="erjo@slitaz.org" 3.6 LICENSE="BSD" 3.7 -WEB_SITE="http://www.darwinsys.com/file/" 3.8 +WEB_SITE="https://darwinsys.com/file/" 3.9 WANTED="file" 3.10 HOST_ARCH="i486 arm" 3.11
4.1 --- a/python-magic/receipt Wed Feb 06 10:00:41 2019 +0100 4.2 +++ b/python-magic/receipt Wed Feb 06 13:08:02 2019 +0100 4.3 @@ -6,7 +6,7 @@ 4.4 SHORT_DESC="File type determination library using 'magic' numbers (Python bindings)" 4.5 MAINTAINER="pascal.bellard@slitaz.org" 4.6 LICENSE="BSD" 4.7 -WEB_SITE="http://www.darwinsys.com/file/" 4.8 +WEB_SITE="https://darwinsys.com/file/" 4.9 WANTED="file" 4.10 4.11 DEPENDS="file python"
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/sgmixer/receipt Wed Feb 06 13:08:02 2019 +0100 5.3 @@ -0,0 +1,36 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="sgmixer" 5.7 +VERSION="0.3" 5.8 +CATEGORY="multimedia" 5.9 +SHORT_DESC="sGmixer is simple audio mixer with an easy-to-use GTK 2 interface" 5.10 +MAINTAINER="pascal.bellard@slitaz.org" 5.11 +LICENSE="GPL2" 5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 5.13 +#WEB_SITE="https://web.archive.org/web/20120617124707/http://openfmi.net/projects/sgmixer/" 5.14 +WEB_SITE="http://freshmeat.sourceforge.net/projects/sgmixer/" 5.15 +#WGET_URL="http://openfmi.net/frs/download.php/2/$TARBALL" 5.16 +WGET_URL="https://crux.ster.zone/distfiles/$TARBALL" 5.17 +TAGS="mixer" 5.18 + 5.19 +DEPENDS="gtk+" 5.20 +BUILD_DEPENDS="gtk+-dev pkg-config" 5.21 + 5.22 +# Rules to configure and make the package. 5.23 +compile_rules() 5.24 +{ 5.25 + sed -i 's|\$(prefix)|$(DESTDIR)&|' Makefile.in 5.26 + [ -e /usr/lib/pkgconfig/libpng.pc ] || 5.27 + ln -s libpng12.pc /usr/lib/pkgconfig/libpng.pc 5.28 + ./configure --prefix=/usr \ 5.29 + $CONFIGURE_ARGS && 5.30 + make && 5.31 + make DESTDIR=$DESTDIR install 5.32 +} 5.33 + 5.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.35 +genpkg_rules() 5.36 +{ 5.37 + mkdir -p $fs/usr 5.38 + cp -a $install/usr/bin $fs/usr 5.39 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/zmixer/receipt Wed Feb 06 13:08:02 2019 +0100 6.3 @@ -0,0 +1,28 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="zmixer" 6.7 +VERSION="0.2.1" 6.8 +CATEGORY="multimedia" 6.9 +SHORT_DESC="A simple volume control that uses the advanced linux sound architecture" 6.10 +MAINTAINER="pascal.bellard@slitaz.org" 6.11 +LICENSE="GPL2" 6.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 6.13 +WEB_SITE="https://zwin.org/zmixer/" 6.14 +WGET_URL="$WEB_SITE$TARBALL" 6.15 +TAGS="mixer" 6.16 + 6.17 +DEPENDS="gtk+ alsa-lib" 6.18 +BUILD_DEPENDS="gtk+-dev alsa-lib-dev pkg-config" 6.19 + 6.20 +# Rules to configure and make the package. 6.21 +compile_rules() 6.22 +{ 6.23 + make 6.24 +} 6.25 + 6.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.27 +genpkg_rules() 6.28 +{ 6.29 + mkdir -p $fs/usr/bin 6.30 + cp -a $src/zmixer $fs/usr/bin 6.31 +}