wok-current annotate libvalhalla/receipt @ rev 14898
slitaz-menus: add Polish and Ukrainian languages
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jul 30 09:25:10 2013 +0300 (2013-07-30) |
parents | 1111758c4102 |
children | ee5c8b018b62 |
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@14718 | 8 LICENSE="LGPL2.1" |
pankso@4766 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@4766 | 10 WEB_SITE="http://libvalhalla.geexbox.org/" |
pankso@4766 | 11 WGET_URL="http://libvalhalla.geexbox.org/releases/$TARBALL" |
pankso@4766 | 12 |
pascal@14718 | 13 DEPENDS="ffmpeg libexif sqlite libxml2 libgcrypt libcurl libcrypto" |
pascal@14718 | 14 BUILD_DEPENDS="ffmpeg-dev sqlite-dev libxml2-dev libexif-dev curl-dev" |
pascal@14718 | 15 |
pankso@4766 | 16 # Rules to configure and make the package. |
pankso@4766 | 17 compile_rules() |
pankso@4766 | 18 { |
pankso@4766 | 19 cd $src |
pascal@14319 | 20 export LDFLAGS="-lavformat" |
pascal@14319 | 21 sed -i '/prealloced_context/d' src/lavf_utils.c |
pascal@14319 | 22 sed -i 's/AVFormatParameters /AVDictionary */' src/lavf_utils.c |
pascal@14319 | 23 sed -i 's/av_open_input_file\(.*, \)0, \(.*\)$/avformat_open_input\1\2/' src/lavf_utils.c |
pascal@13624 | 24 sed -i '/av_metadata_get/d' configure |
pascal@13624 | 25 sed -i 's/av_metadata_get/av_dict_get/' configure src/parser.c |
pascal@13624 | 26 sed -i 's/AVMetadataTag/AVDictionaryEntry/' src/parser.c |
gokhlayeh@11457 | 27 |
gokhlayeh@11457 | 28 # Fix build with curl >= 7.21.2 |
gokhlayeh@11457 | 29 sed -i '/#include <curl\/types.h>/d' src/url_utils.c |
gokhlayeh@11457 | 30 |
pascal@5162 | 31 sed -i 's/cat -n/awk '"'"'{ printf "%6d %s\\n",++n,$0 }'"'"' </' configure |
pascal@5903 | 32 # Fix configure for GCC 4.5.0 |
pascal@5903 | 33 sed -i 's/"\$@" >>\$logfile 2/$@ >>$logfile 2/' configure |
pankso@4766 | 34 ./configure \ |
pankso@4766 | 35 --prefix=/usr && |
pankso@4766 | 36 make && make DESTDIR=$PWD/_pkg install |
pankso@4766 | 37 } |
pankso@4766 | 38 |
pankso@4766 | 39 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4766 | 40 genpkg_rules() |
pankso@4766 | 41 { |
pankso@4766 | 42 mkdir -p $fs/usr/lib |
pascal@14718 | 43 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@4766 | 44 } |