wok-current annotate libvalhalla/receipt @ rev 14652
Add licenses, just for the seed (for example). Anyone can delete this.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jun 04 22:20:53 2013 +0000 (2013-06-04) |
parents | a5fbb2485d34 |
children | 6eff489aa802 |
rev | line source |
---|---|
pankso@4766 | 1 # SliTaz package receipt. |
pankso@4766 | 2 |
pankso@4766 | 3 PACKAGE="libvalhalla" |
pascal@13624 | 4 VERSION="2.1.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@13624 | 9 BUILD_DEPENDS="ffmpeg-dev sqlite-dev libxml2-dev libexif-dev curl-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 |
pascal@14319 | 18 export LDFLAGS="-lavformat" |
pascal@14319 | 19 sed -i '/prealloced_context/d' src/lavf_utils.c |
pascal@14319 | 20 sed -i 's/AVFormatParameters /AVDictionary */' src/lavf_utils.c |
pascal@14319 | 21 sed -i 's/av_open_input_file\(.*, \)0, \(.*\)$/avformat_open_input\1\2/' src/lavf_utils.c |
pascal@13624 | 22 sed -i '/av_metadata_get/d' configure |
pascal@13624 | 23 sed -i 's/av_metadata_get/av_dict_get/' configure src/parser.c |
pascal@13624 | 24 sed -i 's/AVMetadataTag/AVDictionaryEntry/' src/parser.c |
gokhlayeh@11457 | 25 |
gokhlayeh@11457 | 26 # Fix build with curl >= 7.21.2 |
gokhlayeh@11457 | 27 sed -i '/#include <curl\/types.h>/d' src/url_utils.c |
gokhlayeh@11457 | 28 |
pascal@5162 | 29 sed -i 's/cat -n/awk '"'"'{ printf "%6d %s\\n",++n,$0 }'"'"' </' configure |
pascal@5903 | 30 # Fix configure for GCC 4.5.0 |
pascal@5903 | 31 sed -i 's/"\$@" >>\$logfile 2/$@ >>$logfile 2/' configure |
pankso@4766 | 32 ./configure \ |
pankso@4766 | 33 --prefix=/usr && |
pankso@4766 | 34 make && make DESTDIR=$PWD/_pkg install |
pankso@4766 | 35 } |
pankso@4766 | 36 |
pankso@4766 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4766 | 38 genpkg_rules() |
pankso@4766 | 39 { |
pankso@4766 | 40 mkdir -p $fs/usr/lib |
pankso@4766 | 41 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@4766 | 42 } |