wok view liblouis/receipt @ rev 20949

updated gawk (4.0.1 -> 4.2.1)
author Hans-G?nter Theisgen
date Sun Mar 03 15:52:09 2019 +0100 (2019-03-03)
parents f5cac0fe4041
children 392680d9664d
line source
1 # SliTaz package receipt.
3 PACKAGE="liblouis"
4 VERSION="2.5.2-3"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="Open-source braille translator and back-translator."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="$PACKAGE-${VERSION:0:5}.tar.gz"
10 WEB_SITE="http://liblouis.org/"
11 WGET_URL="http://liblouis.googlecode.com/files/$TARBALL"
13 DEPENDS="glibc"
14 BUILD_DEPENDS="python-dev"
15 SUGGESTED="help2man"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }