wok annotate o3read/receipt @ rev 8761

Add aufs patches into linux stuff to be able to recook the package using same stuff & to avoid linux counted as commited after each clean
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 21 04:39:34 2011 +0100 (2011-02-21)
parents 30f642df947e
children 02bbaa9d12ba
rev   line source
milka@1134 1 # SliTaz package receipt.
milka@1134 2
milka@1134 3 PACKAGE="o3read"
milka@1134 4 VERSION="0.0.4"
milka@1134 5 CATEGORY="utilities"
milka@1134 6 SHORT_DESC="Standalone converter for OpenOffice.org writer and calc formats"
milka@1134 7 MAINTAINER="milka@konstelacioj.info"
milka@1134 8 DEPENDS=""
milka@1134 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
milka@1134 10 WEB_SITE="http://siag.nu/o3read/"
milka@1134 11 WGET_URL="http://siag.nu/pub/o3read/$PACKAGE-$VERSION.tar.gz"
jozee@4970 12 TAGS="office"
milka@1134 13
milka@1134 14 # Rules to configure and make the package.
milka@1134 15 compile_rules()
milka@1134 16 {
milka@1134 17 cd $src
milka@1134 18 make install PREFIX=$PWD/_pkg/usr
milka@1134 19 }
milka@1134 20
milka@1134 21 # Rules to gen a SliTaz package suitable for Tazpkg.
milka@1134 22 genpkg_rules()
milka@1134 23 {
milka@1134 24 mkdir -p $fs/usr
milka@1134 25 cp -a $_pkg/usr/bin $fs/usr
milka@1134 26 strip -s $fs/usr/bin/*
milka@1134 27 }
milka@1134 28