wok view odt2txt/receipt @ rev 8333

Add: nagios-plugins*
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Feb 02 01:18:19 2011 +0100 (2011-02-02)
parents 4482e0fab13a
children 02bbaa9d12ba
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 strip -s $fs/usr/bin/*
31 }