wok view odt2txt/receipt @ rev 7832

Add get-LibreOffice (v1.0) - script (based on get-OpenOffice3) to download and package LibreOffice w/out lang. packs
author Ben Arnold <ben@seawolfsanctuary.com>
date Sun Dec 26 22:00:38 2010 +0000 (2010-12-26)
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 }