wok-next annotate libvalhalla/receipt @ rev 12275
Add qtfm (light QT File Manager) and so testing a bit the new toolchain
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Apr 15 02:11:18 2012 +0200 (2012-04-15) |
parents | 5210042ca605 |
children | a5fbb2485d34 |
rev | line source |
---|---|
pankso@4766 | 1 # SliTaz package receipt. |
pankso@4766 | 2 |
pankso@4766 | 3 PACKAGE="libvalhalla" |
slaxemulator@9015 | 4 VERSION="2.0.0" |
jozee@4783 | 5 CATEGORY="multimedia" |
pankso@4766 | 6 SHORT_DESC="A tiny media scanner API." |
pankso@4766 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@5003 | 8 DEPENDS="ffmpeg libexif sqlite libxml2 libgcrypt libcurl libcrypto" |
pascal@10574 | 9 BUILD_DEPENDS="ffmpeg-dev" |
pankso@4766 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@4766 | 11 WEB_SITE="http://libvalhalla.geexbox.org/" |
pankso@4766 | 12 WGET_URL="http://libvalhalla.geexbox.org/releases/$TARBALL" |
pankso@4766 | 13 |
pankso@4766 | 14 # Rules to configure and make the package. |
pankso@4766 | 15 compile_rules() |
pankso@4766 | 16 { |
pankso@4766 | 17 cd $src |
gokhlayeh@11457 | 18 |
gokhlayeh@11457 | 19 # Fix build with curl >= 7.21.2 |
gokhlayeh@11457 | 20 sed -i '/#include <curl\/types.h>/d' src/url_utils.c |
gokhlayeh@11457 | 21 |
pascal@5162 | 22 sed -i 's/cat -n/awk '"'"'{ printf "%6d %s\\n",++n,$0 }'"'"' </' configure |
pascal@5903 | 23 # Fix configure for GCC 4.5.0 |
pascal@5903 | 24 sed -i 's/"\$@" >>\$logfile 2/$@ >>$logfile 2/' configure |
pankso@4766 | 25 ./configure \ |
pankso@4766 | 26 --prefix=/usr && |
pankso@4766 | 27 make && make DESTDIR=$PWD/_pkg install |
pankso@4766 | 28 } |
pankso@4766 | 29 |
pankso@4766 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4766 | 31 genpkg_rules() |
pankso@4766 | 32 { |
pankso@4766 | 33 mkdir -p $fs/usr/lib |
pankso@4766 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@4766 | 35 } |