wok-next view mdp/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 6880673c44a1
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="mdp"
4 VERSION="0.91.3"
5 CATEGORY="office"
6 SHORT_DESC="A command-line based markdown presentation tool."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/visit1985/mdp"
11 WGET_URL="git|git://github.com/visit1985/mdp"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev git bzip2"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/share/mdp
27 cp -a $install/$PACKAGE $fs/usr/bin
28 cp -a $src/*.md $fs/usr/share/mdp
29 }