wok view liblouis/receipt @ rev 21714

libatomic: copy libatomic.so from as well
author Hans-G?nter Theisgen
date Sun Jun 09 15:06:40 2019 +0100 (2019-06-09)
parents eeba7ab1dffe
children 0414f5096d7f
line source
1 # SliTaz package receipt.
3 PACKAGE="liblouis"
4 VERSION="3.9.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 DEPENDS="glibc"
15 BUILD_DEPENDS="python-dev"
16 SUGGESTED="help2man"
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 }