wok view liblouis/receipt @ rev 23112

updated libtorrent-rasterbar and libtorrent-rasterbar-dev again (1.2.0 -> 1.2.5)
author Hans-G?nter Theisgen
date Thu Mar 12 16:27:01 2020 +0100 (2020-03-12)
parents 392680d9664d
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="liblouis"
4 VERSION="3.13.0"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="Open-source braille translator and back-translator."
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="http://liblouis.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 SUGGESTED="help2man"
15 DEPENDS="glibc"
16 BUILD_DEPENDS="python-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/share $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }