wok annotate o3read/receipt @ rev 2553

rp-pppoe: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 26 12:23:09 2009 +0000 (2009-03-26)
parents
children 6ec17b55b59a
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"
milka@1134 12
milka@1134 13 # Rules to configure and make the package.
milka@1134 14 compile_rules()
milka@1134 15 {
milka@1134 16 cd $src
milka@1134 17 make install PREFIX=$PWD/_pkg/usr
milka@1134 18 }
milka@1134 19
milka@1134 20 # Rules to gen a SliTaz package suitable for Tazpkg.
milka@1134 21 genpkg_rules()
milka@1134 22 {
milka@1134 23 mkdir -p $fs/usr
milka@1134 24 cp -a $_pkg/usr/bin $fs/usr
milka@1134 25 strip -s $fs/usr/bin/*
milka@1134 26 }
milka@1134 27