wok annotate opusfile/receipt @ rev 22937

updated hunspell and hunspell-dev again (1.3.3 -> 1.7.0)
author Hans-G?nter Theisgen
date Thu Feb 27 07:35:13 2020 +0100 (2020-02-27)
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 }