wok-next view opus/receipt @ rev 20494

make-slitaz-icons: in multiple choice for 16px request: if 16px and scalable icons both are available, try to choose 16px one, but not the first caught.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Mar 13 23:17:56 2018 +0200 (2018-03-13)
parents 9f18a592b782
children 188b011e073a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="opus"
4 VERSION="1.2.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Totally open, royalty-free, highly versatile audio codec"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://opus-codec.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 #WGET_URL="http://downloads.xiph.org/releases/opus/$TARBALL"
13 WGET_URL="https://archive.mozilla.org/pub/opus/$TARBALL" # from official page, newer
15 SPLIT="opus-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --docdir=/usr/share/doc/opus-$VERSION \
22 $CONFIGURE_ARGS && \
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 opus) copy @std;;
31 *-dev) copy @dev;;
32 esac
33 }