wok-next view liblouis/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents a3c581bf52b8
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="liblouis"
4 VERSION="2.5.2-3"
5 CATEGORY="utilities"
6 SHORT_DESC="Open-source braille translator and back-translator"
7 MAINTAINER="yuripourre@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://liblouis.org/"
11 TARBALL="$PACKAGE-${VERSION:0:5}.tar.gz"
12 WGET_URL="http://liblouis.googlecode.com/files/$TARBALL" # FIXME
14 BUILD_DEPENDS="python-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 liblouis)
29 copy @std
30 DEPENDS="glibc"
31 SUGGESTED="help2man"
32 ;;
33 *-dev)
34 copy @dev
35 ;;
36 esac
37 }