wok-6.x annotate hunspell/receipt @ rev 23784
updated xvkbd (3.7 -> 4.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu May 21 14:49:06 2020 +0100 (2020-05-21) |
parents | 47098345fc68 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@17956 | 1 # SliTaz package receipt. |
pascal@17956 | 2 |
pascal@17956 | 3 PACKAGE="hunspell" |
Hans-G?nter@22936 | 4 VERSION="1.7.0" |
pascal@17956 | 5 CATEGORY="system-tools" |
pascal@17956 | 6 SHORT_DESC="A spell checker." |
pascal@17956 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17956 | 8 LICENSE="GPL2 LGPL2.1 MPL" |
Hans-G?nter@22936 | 9 WEB_SITE="https://hunspell.github.io/" |
Hans-G?nter@22936 | 10 |
pascal@17956 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22936 | 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz" |
Hans-G?nter@22936 | 13 |
Hans-G?nter@22936 | 14 BUILD_DEPENDS="autoconf automake libtool" |
pascal@17956 | 15 |
pascal@17956 | 16 # Rules to configure and make the package. |
pascal@17956 | 17 compile_rules() |
pascal@17956 | 18 { |
Hans-G?nter@22937 | 19 autoreconf -vfi && |
Hans-G?nter@22936 | 20 ./configure \ |
Hans-G?nter@22936 | 21 --prefix=/usr \ |
Hans-G?nter@22936 | 22 --infodir=/usr/share/info \ |
Hans-G?nter@22936 | 23 --mandir=/usr/share/man \ |
Hans-G?nter@22936 | 24 --disable-nls \ |
Hans-G?nter@22936 | 25 $CONFIGURE_ARGS && |
pascal@17956 | 26 make && |
Hans-G?nter@22936 | 27 make DESTDIR=$DESTDIR install |
pascal@17956 | 28 } |
pascal@17956 | 29 |
pascal@17956 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17956 | 31 genpkg_rules() |
pascal@17956 | 32 { |
pascal@17956 | 33 mkdir -p $fs/usr/lib |
Hans-G?nter@22936 | 34 |
Hans-G?nter@22936 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
Hans-G?nter@22936 | 36 cp -a $install/usr/bin $fs/usr |
pascal@17956 | 37 } |