wok view odt2txt/receipt @ rev 3615

get-google-chrome: update DEPENDS
author Liu Peng <rocky@slitaz.org>
date Tue Jun 30 05:22:50 2009 +0000 (2009-06-30)
parents d78262312181
children 6ec17b55b59a
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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make
20 mkdir -p $PWD/_pkg/usr/bin
21 mv $PACKAGE $PWD/_pkg/usr/bin/
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $_pkg/usr/bin $fs/usr
29 strip -s $fs/usr/bin/*
30 }