wok diff verbiste/receipt @ rev 24306
modified recipe for ctypes.sh
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jan 17 16:11:08 2022 +0100 (2022-01-17) |
parents | c49ffc024a6c |
children | 934055de50e2 |
line diff
1.1 --- a/verbiste/receipt Wed Jan 30 23:42:44 2019 +0100 1.2 +++ b/verbiste/receipt Mon Jan 17 16:11:08 2022 +0100 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="verbiste" 1.7 -VERSION="0.1.33" 1.8 +VERSION="0.1.47" 1.9 CATEGORY="office" 1.10 -SHORT_DESC="Verbiste is a French conjugation system." 1.11 +SHORT_DESC="A French conjugation system." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://perso.b2b2c.ca/~sarrazip/dev/verbiste.html" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://web.archive.org/web/20180606070141/http://perso.b2b2c.ca/~sarrazip/dev/verbiste.html" 1.18 WGET_URL="http://perso.b2b2c.ca/~sarrazip/dev/$TARBALL" 1.19 1.20 DEPENDS="gtk+ libxml2" 1.21 @@ -16,19 +17,22 @@ 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 - cd $src 1.26 - ./configure $CONFIGURE_ARGS && 1.27 - make && make install 1.28 + ./configure \ 1.29 + --with-gnome-app=no \ 1.30 + $CONFIGURE_ARGS && 1.31 + make && 1.32 + make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 - mkdir -p $fs/usr/lib $fs/usr/share/pixmaps 1.39 - cp -a $install/usr/bin $fs/usr 1.40 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.41 - cp -a $install/usr/share/verbiste-* $fs/usr/share 1.42 + mkdir -p $fs/usr/lib 1.43 + mkdir -p $fs/usr/share/pixmaps 1.44 + 1.45 + cp -a $install/usr/bin $fs/usr 1.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.47 + cp -a $install/usr/share/verbiste-* $fs/usr/share 1.48 rm $fs/usr/share/verbiste-*/COPYING 1.49 - cp $src/src/gtk/verbiste.png $fs/usr/share/pixmaps 1.50 + cp $src/src/gtk/verbiste*.png $fs/usr/share/pixmaps 1.51 } 1.52 -