wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="opusfile"
4 VERSION="0.11"
5 CATEGORY="multimedia"
6 SHORT_DESC="Opus streams in the Ogg container I/O"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://opus-codec.org/"
11 WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL"
13 DEPENDS="libssl libogg opus"
14 BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS && \
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }