wok-current annotate opus-tools/receipt @ rev 17484
opus-tools: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 30 10:55:38 2014 +0100 (2014-12-30) |
parents | 9689f1b75619 |
children | e1a48ceda4c1 |
rev | line source |
---|---|
pascal@13361 | 1 # SliTaz package receipt. |
pascal@13361 | 2 |
pascal@13361 | 3 PACKAGE="opus-tools" |
devl547@16197 | 4 VERSION="0.1.8" |
pascal@13361 | 5 CATEGORY="multimedia" |
pascal@13361 | 6 SHORT_DESC="Opus encoder, decoder and tiny tools." |
pascal@13361 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pascal@13361 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@13361 | 10 WEB_SITE="http://opus-codec.org/" |
pascal@13361 | 11 WGET_URL="http://downloads.xiph.org/releases/opus/$TARBALL" |
pascal@13361 | 12 |
devl547@16197 | 13 DEPENDS="libogg flac" |
pascal@17484 | 14 BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev" |
pascal@13361 | 15 |
pascal@13361 | 16 # Rules to configure and make the package. |
pascal@13361 | 17 compile_rules() |
pascal@13361 | 18 { |
pascal@13361 | 19 cd $src |
devl547@16197 | 20 CFLAGS="$CFLAGS -lm" |
pascal@13361 | 21 ./configure --prefix=/usr \ |
pascal@13361 | 22 $CONFIGURE_ARGS && \ |
pascal@13361 | 23 make && make DESTDIR=$DESTDIR install |
pascal@13361 | 24 } |
pascal@13361 | 25 |
pascal@13361 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13361 | 27 genpkg_rules() |
pascal@13361 | 28 { |
pascal@13361 | 29 mkdir -p $fs/usr |
pascal@13361 | 30 cp -a $install/usr/bin $fs/usr |
pascal@13361 | 31 } |
pascal@13361 | 32 |