wok view schroedinger/receipt @ rev 15353

mp: remove TRY_DRIVERS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 30 17:09:51 2013 +0000 (2013-09-30)
parents 7a526dcd4932
children 7c0170dd3ecc
line source
1 # SliTaz package receipt.
3 PACKAGE="schroedinger"
4 VERSION="1.0.11"
5 CATEGORY="multimedia"
6 SHORT_DESC="Dirac video compression library"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="MPL LGPL GPL MIT"
9 WEB_SITE="http://diracvideo.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
13 DEPENDS="orc"
14 BUILD_DEPENDS="orc-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS && \
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 mv $install/usr/lib/*.so* $fs/usr/lib
30 }