wok-current diff opusfile/receipt @ rev 25601
use gcc49-lib-base for openldap-dev
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Fri Sep 01 12:04:33 2023 +0000 (16 months ago) |
parents | bc2b9d9bed6f |
children | 5926178cd6fa |
line diff
1.1 --- a/opusfile/receipt Sun Mar 06 21:04:14 2022 +0000 1.2 +++ b/opusfile/receipt Fri Sep 01 12:04:33 2023 +0000 1.3 @@ -1,17 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="opusfile" 1.7 -VERSION="0.11" 1.8 +VERSION="0.12" 1.9 CATEGORY="multimedia" 1.10 -SHORT_DESC="Opus streams in the Ogg container I/O" 1.11 +SHORT_DESC="Opus streams in the Ogg container I/O." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 -LICENSE="GPL2" 1.14 +LICENSE="BSD" 1.15 +WEB_SITE="https://opus-codec.org/" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="https://opus-codec.org/" 1.19 -WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL" 1.20 +WGET_URL="https://github.com/xiph/$PACKAGE/archive/v$VERSION.tar.gz" 1.21 1.22 -DEPENDS="libssl libogg opus" 1.23 -BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config" 1.24 +DEPENDS="libogg libssl opus" 1.25 +BUILD_DEPENDS="automake libogg libogg-dev libtool openssl-dev opus-dev pkg-config" 1.26 1.27 # What is the latest version available today? 1.28 current_version() 1.29 @@ -23,14 +24,16 @@ 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 - ./configure --prefix=/usr \ 1.34 - $CONFIGURE_ARGS && \ 1.35 - make && make DESTDIR=$DESTDIR install 1.36 + ./autogen.sh && 1.37 + ./configure \ 1.38 + --prefix=/usr \ 1.39 + $CONFIGURE_ARGS && 1.40 + make && 1.41 + make install DESTDIR=$DESTDIR 1.42 } 1.43 1.44 # Rules to gen a SliTaz package suitable for Tazpkg. 1.45 genpkg_rules() 1.46 { 1.47 - mkdir -p $fs/usr/lib 1.48 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.49 + cook_copy_files *.so* 1.50 }