wok-current view hyphen/receipt @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (2 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="hyphen"
4 VERSION="2.8.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for high quality hyphenation and justification"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2 LGPL2.1 MPL"
9 WEB_SITE="http://hunspell.github.io/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/hunspell/$TARBALL"
13 BUILD_DEPENDS="automake libtool gettext perl"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure $CONFIGURE_ARGS
19 make &&
20 make DESTDIR=$install install-libLTLIBRARIES &&
21 make DESTDIR=$install install-binSCRIPTS &&
22 make DESTDIR=$install install-includeHEADERS
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }