wok annotate verbiste/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents 6135577f4d08
children 85e0aa42e26a
rev   line source
pascal@11228 1 # SliTaz package receipt.
pascal@11228 2
pascal@11228 3 PACKAGE="verbiste"
pascal@11228 4 VERSION="0.1.33"
pascal@11228 5 CATEGORY="office"
pascal@11228 6 SHORT_DESC="Verbiste is a French conjugation system."
pascal@11228 7 MAINTAINER="pankso@slitaz.org"
pascal@15363 8 LICENSE="GPL2"
pascal@11228 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20689 10 WEB_SITE="https://web.archive.org/web/20180606070141/http://perso.b2b2c.ca/~sarrazip/dev/verbiste.html"
pascal@20679 11 WGET_URL="http://perso.b2b2c.ca/~sarrazip/dev/$TARBALL"
pascal@11228 12
pascal@11228 13 DEPENDS="gtk+ libxml2"
pascal@11228 14 BUILD_DEPENDS="gtk+-dev libxml2-dev"
pascal@11228 15
pascal@11228 16 # Rules to configure and make the package.
pascal@11228 17 compile_rules()
pascal@11228 18 {
pascal@11228 19 cd $src
pascal@11228 20 ./configure $CONFIGURE_ARGS &&
pascal@11228 21 make && make install
pascal@11228 22 }
pascal@11228 23
pascal@11228 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11228 25 genpkg_rules()
pascal@11228 26 {
pascal@11228 27 mkdir -p $fs/usr/lib $fs/usr/share/pixmaps
pascal@11228 28 cp -a $install/usr/bin $fs/usr
pascal@11228 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11228 30 cp -a $install/usr/share/verbiste-* $fs/usr/share
pascal@11228 31 rm $fs/usr/share/verbiste-*/COPYING
pascal@11228 32 cp $src/src/gtk/verbiste.png $fs/usr/share/pixmaps
pascal@11228 33 }
pascal@11228 34