wok annotate odt2txt/receipt @ rev 23925

Add Connect-Four
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 23 10:18:23 2020 +0000 (2020-08-23)
parents 600aaedb561d
children 5ea0ce1cecc0
rev   line source
milka@1160 1 # SliTaz package receipt.
milka@1160 2
milka@1160 3 PACKAGE="odt2txt"
Hans-G?nter@21606 4 VERSION="0.5"
milka@1160 5 CATEGORY="utilities"
Hans-G?nter@21606 6 TAGS="office"
Hans-G?nter@21606 7 SHORT_DESC="A simple converter from OpenDocument Text to plain text."
milka@1160 8 MAINTAINER="milka@konstelacioj.info"
pascal@15590 9 LICENSE="GPL2"
Hans-G?nter@21606 10 WEB_SITE="https://github.com/dstosberg/odt2txt"
Hans-G?nter@21606 11
Hans-G?nter@21606 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21606 13 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
Hans-G?nter@21606 14
milka@1160 15 #SUGGESTED="odfread"
pascal@15590 16 DEPENDS="zlib"
pascal@15590 17 BUILD_DEPENDS="zlib-dev"
pascal@15590 18
milka@1160 19 # Rules to configure and make the package.
milka@1160 20 compile_rules()
milka@1160 21 {
milka@1160 22 make
pascal@15590 23 mkdir -p $DESTDIR/usr/bin
pascal@15590 24 mv $PACKAGE $DESTDIR/usr/bin/
milka@1160 25 }
milka@1160 26
milka@1160 27 # Rules to gen a SliTaz package suitable for Tazpkg.
milka@1160 28 genpkg_rules()
milka@1160 29 {
milka@1160 30 mkdir -p $fs/usr/bin
pascal@15590 31 cp -a $install/usr/bin $fs/usr
jozee@4970 32 }