wok view odt2txt/receipt @ rev 11816

Down: libpng to 1.2.47. This is a Security Fix. Don't update to 1.5.9 until after slitaz 4.0 release. Too much stuff will have to patch.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 25 13:50:44 2012 -0500 (2012-02-25)
parents 6ec17b55b59a
children 600aaedb561d
line source
1 # SliTaz package receipt.
3 PACKAGE="odt2txt"
4 VERSION="0.4"
5 CATEGORY="utilities"
6 SHORT_DESC="A simple converter from OpenDocument Text to plain text"
7 MAINTAINER="milka@konstelacioj.info"
8 DEPENDS="zlib"
9 BUILD_DEPENDS="zlib-dev"
10 #SUGGESTED="odfread"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.stosberg.net/odt2txt/"
13 WGET_URL="http://www.stosberg.net/$PACKAGE/$TARBALL"
14 TAGS="office"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make
21 mkdir -p $PWD/_pkg/usr/bin
22 mv $PACKAGE $PWD/_pkg/usr/bin/
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $_pkg/usr/bin $fs/usr
30 }