wok view opus-tools/receipt @ rev 17853

epdfview: fix rendering of embedded images

used:
http://www.linuxfromscratch.org/patches/blfs/svn/epdfview-0.1.8-fixes-2.patch
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Mar 24 22:35:58 2015 +0100 (2015-03-24)
parents 9689f1b75619
children e1a48ceda4c1
line source
1 # SliTaz package receipt.
3 PACKAGE="opus-tools"
4 VERSION="0.1.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="Opus encoder, decoder and tiny tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://opus-codec.org/"
11 WGET_URL="http://downloads.xiph.org/releases/opus/$TARBALL"
13 DEPENDS="libogg flac"
14 BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 CFLAGS="$CFLAGS -lm"
21 ./configure --prefix=/usr \
22 $CONFIGURE_ARGS && \
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }