wok-current diff opus/receipt @ rev 14074
coreutils: add cp
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 22 15:32:40 2013 +0100 (2013-02-22) |
parents | |
children | 23c3aed67cd9 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/opus/receipt Fri Feb 22 15:32:40 2013 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="opus" 1.7 +VERSION="1.0.1" 1.8 +CATEGORY="multimedia" 1.9 +SHORT_DESC="Totally open, royalty-free, highly versatile audio codec." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://opus-codec.org/" 1.13 +WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL" 1.14 + 1.15 +DEPENDS="" 1.16 +BUILD_DEPENDS="" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr \ 1.23 + --enable-float-approx --enable-fuzzing \ 1.24 + $CONFIGURE_ARGS && \ 1.25 + make && make DESTDIR=$DESTDIR install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr/lib 1.32 + cp -a $install/usr/lib/*a $fs/usr/lib 1.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 + cp -a $install/usr/include $fs/usr 1.35 + cp -a $install/usr/share $fs/usr 1.36 +} 1.37 +