wok view frei0r-plugins/receipt @ rev 7712

yasr: add post install
author Paul Issott <paul@slitaz.org>
date Sun Dec 19 15:51:06 2010 +0000 (2010-12-19)
parents fc9449a2e57e
children 63b996317ebe
line source
1 # SliTaz package receipt.
3 PACKAGE="frei0r-plugins"
4 VERSION="1.2.1"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters."
8 BUILD_DEPENDS="gavl-dev"
9 WEB_SITE="http://www.piksel.org/frei0r"
10 DEPENDS="gcc-lib-base gavl"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://ftp.dyne.org/frei0r/releases/$TARBALL"
13 TAGS="multimedia"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/frei0r-1
28 cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1
30 }