wok annotate opus-tools/receipt @ rev 20503
partclone 0.2.89 blkid header not found
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Tue Oct 30 10:55:16 2018 +0000 (2018-10-30) |
parents | e1a48ceda4c1 |
children | f0484014527d |
rev | line source |
---|---|
pascal@13361 | 1 # SliTaz package receipt. |
pascal@13361 | 2 |
pascal@13361 | 3 PACKAGE="opus-tools" |
pascal@19686 | 4 VERSION="0.1.10" |
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 |