wok-next diff frei0r-plugins/receipt @ rev 6835
Forgot patch for freeimage to compile with gcc 4.5.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Oct 19 21:25:15 2010 +0000 (2010-10-19) |
parents | |
children | 2ecfb88314ac |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/frei0r-plugins/receipt Tue Oct 19 21:25:15 2010 +0000 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="frei0r-plugins" 1.7 +VERSION="1.1.22" 1.8 +CATEGORY="multimedia" 1.9 +MAINTAINER="jozee@slitaz.org" 1.10 +SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters." 1.11 +BUILD_DEPENDS="gavl-dev" 1.12 +WEB_SITE="http://www.piksel.org/frei0r" 1.13 +DEPENDS="gcc-lib-base gavl" 1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 +WGET_URL="http://propirate.net/frei0r/$TARBALL" 1.16 +TAGS="multimedia" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 + 1.20 +compile_rules() { 1.21 + cd $src 1.22 + ./configure --prefix=/usr && 1.23 + make && 1.24 + make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib/frei0r-1 1.31 + cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1 1.32 + 1.33 +}