wok annotate liblouis/receipt @ rev 23456

updated pure-ftpd and pure-ftpd-pam (1.0.48 -> 1.0.49)
author Hans-G?nter Theisgen
date Fri Apr 03 13:56:35 2020 +0100 (2020-04-03)
parents 392680d9664d
children 5ea0ce1cecc0
rev   line source
yuripourre@16967 1 # SliTaz package receipt.
yuripourre@16967 2
yuripourre@16967 3 PACKAGE="liblouis"
Hans-G?nter@23081 4 VERSION="3.13.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
Hans-G?nter@23081 14 SUGGESTED="help2man"
yuripourre@16967 15 DEPENDS="glibc"
yuripourre@16967 16 BUILD_DEPENDS="python-dev"
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 }