wok rev 21333
updated libvorbis and libvorbis-dev (1.3.3 -> 1.3.6)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 19 15:51:04 2019 +0100 (2019-04-19) |
parents | 094f58ac8183 |
children | c68322a2f2f3 |
files | libvorbis-dev/receipt libvorbis/receipt |
line diff
1.1 --- a/libvorbis-dev/receipt Fri Apr 19 15:52:41 2019 +0200 1.2 +++ b/libvorbis-dev/receipt Fri Apr 19 15:51:04 2019 +0100 1.3 @@ -1,23 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libvorbis-dev" 1.7 -VERSION="1.3.3" 1.8 +VERSION="1.3.6" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Vorbis base library." 1.11 +SHORT_DESC="Vorbis base library - development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 -LICENSE="other" 1.14 +LICENSE="BSD" 1.15 +WEB_SITE="https://www.xiph.org/vorbis/" 1.16 + 1.17 WANTED="libvorbis" 1.18 -WEB_SITE="https://www.xiph.org/" 1.19 +DEPENDS="libogg-dev libvorbis pkg-config" 1.20 + 1.21 HOST_ARCH="i486 arm" 1.22 1.23 -DEPENDS="libogg-dev libvorbis pkg-config" 1.24 - 1.25 # Rules to gen a SliTaz package suitable for Tazpkg. 1.26 genpkg_rules() 1.27 { 1.28 - mkdir -p $fs/usr/lib $fs/usr/share 1.29 - cp -a $install/usr/include $fs/usr 1.30 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.31 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 - cp -a $install/usr/share/aclocal $fs/usr/share 1.33 + mkdir -p $fs/usr/lib 1.34 + mkdir -p $fs/usr/share 1.35 + 1.36 + cp -a $install/usr/include $fs/usr 1.37 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.38 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.39 + cp -a $install/usr/share/aclocal $fs/usr/share 1.40 }
2.1 --- a/libvorbis/receipt Fri Apr 19 15:52:41 2019 +0200 2.2 +++ b/libvorbis/receipt Fri Apr 19 15:51:04 2019 +0100 2.3 @@ -1,25 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libvorbis" 2.7 -VERSION="1.3.3" 2.8 +VERSION="1.3.6" 2.9 CATEGORY="multimedia" 2.10 SHORT_DESC="Vorbis base library." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 -LICENSE="other" 2.13 +LICENSE="BSD" 2.14 +WEB_SITE="https://www.xiph.org/vorbis/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://www.xiph.org/" 2.18 WGET_URL="https://downloads.xiph.org/releases/vorbis/$TARBALL" 2.19 -HOST_ARCH="i486 arm" 2.20 2.21 DEPENDS="libogg" 2.22 BUILD_DEPENDS="libogg-dev" 2.23 2.24 +HOST_ARCH="i486 arm" 2.25 + 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 ./configure \ 2.30 $CONFIGURE_ARGS && 2.31 - make && 2.32 + make -j 1 && 2.33 make DESTDIR=$DESTDIR install 2.34 } 2.35 2.36 @@ -34,4 +36,3 @@ 2.37 2.38 cp -a $install/usr/lib/*.so* $fs/usr/lib 2.39 } 2.40 -