wok annotate opusfile/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents
children 56ee356284c6
rev   line source
pascal@20519 1 # SliTaz package receipt.
pascal@20519 2
pascal@20519 3 PACKAGE="opusfile"
pascal@20519 4 VERSION="0.11"
pascal@20519 5 CATEGORY="multimedia"
pascal@20519 6 SHORT_DESC="Opus streams in the Ogg container I/O"
pascal@20519 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20519 8 LICENSE="GPL2"
pascal@20519 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20519 10 WEB_SITE="http://opus-codec.org/"
pascal@20519 11 WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL"
pascal@20519 12
pascal@20519 13 DEPENDS="libssl libogg opus"
pascal@20519 14 BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config"
pascal@20519 15
pascal@20519 16 # Rules to configure and make the package.
pascal@20519 17 compile_rules()
pascal@20519 18 {
pascal@20519 19 ./configure --prefix=/usr \
pascal@20519 20 $CONFIGURE_ARGS && \
pascal@20519 21 make && make DESTDIR=$DESTDIR install
pascal@20519 22 }
pascal@20519 23
pascal@20519 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20519 25 genpkg_rules()
pascal@20519 26 {
pascal@20519 27 mkdir -p $fs/usr/lib
pascal@20519 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@20519 29 }