wok annotate schroedinger/receipt @ rev 14011

Add: schroedinger - Dirac Video codec
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 19:49:27 2013 +0100 (2013-02-17)
parents
children 01010da01a4a
rev   line source
domcox@14011 1 # SliTaz package receipt.
domcox@14011 2
domcox@14011 3 PACKAGE="schroedinger"
domcox@14011 4 VERSION="1.0.11"
domcox@14011 5 CATEGORY="multimedia"
domcox@14011 6 SHORT_DESC="Dirac video compression library"
domcox@14011 7 MAINTAINER="domcox@slitaz.org"
domcox@14011 8 LICENSE="mpl lgpl mit"
domcox@14011 9 WEB_SITE="http://diracvideo.org/"
domcox@14011 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
domcox@14011 11 WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
domcox@14011 12 DEPENDS="orc"
domcox@14011 13 BUILD_DEPENDS="orc-dev"
domcox@14011 14
domcox@14011 15 # Rules to configure and make the package.
domcox@14011 16 compile_rules()
domcox@14011 17 {
domcox@14011 18 ./configure \
domcox@14011 19 --disable-static \
domcox@14011 20 $CONFIGURE_ARGS && \
domcox@14011 21 make && make install
domcox@14011 22 }
domcox@14011 23
domcox@14011 24 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@14011 25 genpkg_rules()
domcox@14011 26 {
domcox@14011 27 mkdir -p $fs/usr/lib
domcox@14011 28 mv $install/usr/lib/*.so* $fs/usr/lib
domcox@14011 29 }