wok annotate liblouis/receipt @ rev 22885
updated gsl and gsl-dev (2.5 -> 2.6)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 22 16:56:40 2020 +0100 (2020-02-22) |
parents | eeba7ab1dffe |
children | 0414f5096d7f |
rev | line source |
---|---|
yuripourre@16967 | 1 # SliTaz package receipt. |
yuripourre@16967 | 2 |
yuripourre@16967 | 3 PACKAGE="liblouis" |
Hans-G?nter@21248 | 4 VERSION="3.9.0" |
yuripourre@16967 | 5 CATEGORY="utilities" |
yuripourre@16967 | 6 LICENSE="GPL3" |
yuripourre@16967 | 7 SHORT_DESC="Open-source braille translator and back-translator." |
yuripourre@16967 | 8 MAINTAINER="yuripourre@gmail.com" |
pascal@20674 | 9 WEB_SITE="http://liblouis.org/" |
Hans-G?nter@21248 | 10 |
Hans-G?nter@21248 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21248 | 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" |
yuripourre@16967 | 13 |
yuripourre@16967 | 14 DEPENDS="glibc" |
yuripourre@16967 | 15 BUILD_DEPENDS="python-dev" |
yuripourre@16967 | 16 SUGGESTED="help2man" |
yuripourre@16967 | 17 |
yuripourre@16967 | 18 # Rules to configure and make the package. |
yuripourre@16967 | 19 compile_rules() |
yuripourre@16967 | 20 { |
Hans-G?nter@21248 | 21 ./configure \ |
Hans-G?nter@21248 | 22 --prefix=/usr \ |
Hans-G?nter@21248 | 23 --disable-static \ |
yuripourre@16967 | 24 $CONFIGURE_ARGS && |
Hans-G?nter@21248 | 25 make -j 1 && |
yuripourre@16967 | 26 make DESTDIR=$DESTDIR install |
yuripourre@16967 | 27 } |
yuripourre@16967 | 28 |
yuripourre@16967 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
yuripourre@16967 | 30 genpkg_rules() |
yuripourre@16967 | 31 { |
yuripourre@16967 | 32 mkdir -p $fs/usr/lib |
Hans-G?nter@21248 | 33 |
Hans-G?nter@21248 | 34 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21248 | 35 cp -a $install/usr/share $fs/usr |
Hans-G?nter@21248 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
yuripourre@16967 | 37 } |