wok annotate 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
rev   line source
jozee@6824 1 # SliTaz package receipt.
jozee@6824 2
jozee@6824 3 PACKAGE="frei0r-plugins"
slaxemulator@6863 4 VERSION="1.2.1"
jozee@6824 5 CATEGORY="multimedia"
jozee@6824 6 MAINTAINER="jozee@slitaz.org"
jozee@6824 7 SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters."
jozee@6824 8 BUILD_DEPENDS="gavl-dev"
jozee@6824 9 WEB_SITE="http://www.piksel.org/frei0r"
jozee@6824 10 DEPENDS="gcc-lib-base gavl"
jozee@6824 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6863 12 WGET_URL="http://ftp.dyne.org/frei0r/releases/$TARBALL"
jozee@6824 13 TAGS="multimedia"
jozee@6824 14
jozee@6824 15 # Rules to configure and make the package.
jozee@6824 16
jozee@6824 17 compile_rules() {
jozee@6824 18 cd $src
jozee@6824 19 ./configure --prefix=/usr &&
jozee@6824 20 make &&
jozee@6824 21 make DESTDIR=$PWD/_pkg install
jozee@6824 22 }
jozee@6824 23
jozee@6824 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6824 25 genpkg_rules()
jozee@6824 26 {
jozee@6824 27 mkdir -p $fs/usr/lib/frei0r-1
jozee@6824 28 cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1
jozee@6824 29
jozee@6824 30 }