wok rev 14009

Add: opencore-amr - Adaptive Multi Rate speech codec
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 19:47:21 2013 +0100 (2013-02-17)
parents 265504ab5023
children 93430e225e55
files opencore-amr/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/opencore-amr/receipt	Sun Feb 17 19:47:21 2013 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="opencore-amr"
     1.7 +VERSION="0.1.3"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Adaptive Multi Rate (AMR) speech codec"
    1.10 +MAINTAINER="domcox@sllitaz.org"
    1.11 +LICENSE="apache"
    1.12 +WEB_SITE="http://opencore-amr.sourceforge.net"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS=""
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure \
    1.23 +		--prefix="/usr" \
    1.24 +		--disable-static \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	make && make install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/lib
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34 +}