wok-next view opusfile/receipt @ rev 20806

I. node update: security -> https://nodejs.org/en/blog/vulnerability/june-2018-security-releases/ 9.5.0 -> 9.11.2 II. add checksum
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 13 08:26:54 2018 +0000 (2018-06-13)
parents e6615350078d
children e7a485521d6a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="opusfile"
4 VERSION="0.9"
5 CATEGORY="multimedia"
6 SHORT_DESC="Library for opening, seeking, and decoding .opus files"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://opus-codec.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL"
14 BUILD_DEPENDS="openssl-dev libogg-dev opus-dev"
15 SPLIT="opusfile-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 fix libtool &&
20 make &&
21 make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 opusfile)
27 copy @std
28 DEPENDS="openssl libogg opus"
29 ;;
30 *-dev)
31 copy @dev
32 DEPENDS="opusfile libogg-dev openssl-dev opus-dev"
33 ;;
34 esac
35 }