wok annotate frei0r-plugins/receipt @ rev 17747

discount: fix TARBALL name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 07 23:52:35 2015 +0100 (2015-03-07)
parents 09d889437e38
children e3f377fbc5f0
rev   line source
jozee@6824 1 # SliTaz package receipt.
jozee@6824 2
jozee@6824 3 PACKAGE="frei0r-plugins"
slaxemulator@9245 4 VERSION="1.3"
jozee@6824 5 CATEGORY="multimedia"
jozee@6824 6 MAINTAINER="jozee@slitaz.org"
pascal@15588 7 LICENSE="GPL2"
jozee@6824 8 SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters."
jozee@6824 9 WEB_SITE="http://www.piksel.org/frei0r"
jozee@6824 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6863 11 WGET_URL="http://ftp.dyne.org/frei0r/releases/$TARBALL"
jozee@6824 12 TAGS="multimedia"
jozee@6824 13
pascal@15588 14 DEPENDS="gcc-lib-base gavl"
pascal@15588 15 BUILD_DEPENDS="gavl-dev"
pascal@15588 16
jozee@6824 17 # Rules to configure and make the package.
jozee@6824 18
jozee@6824 19 compile_rules() {
jozee@6824 20 cd $src
slaxemulator@10331 21 ./configure $CONFIGURE_ARGS &&
slaxemulator@10331 22 make && make install
jozee@6824 23 }
jozee@6824 24
jozee@6824 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6824 26 genpkg_rules()
jozee@6824 27 {
jozee@6824 28 mkdir -p $fs/usr/lib/frei0r-1
pascal@15588 29 cp -a $install/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1
jozee@6824 30
jozee@6824 31 }