wok view libuninameslist/receipt @ rev 22776

Add utf8proc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 25 18:37:55 2020 +0100 (2020-01-25)
parents 08370faa54d6
children 60bae8a22f66
line source
1 # SliTaz package receipt.
3 PACKAGE="libuninameslist"
4 VERSION="20190305"
5 CATEGORY="misc"
6 SHORT_DESC="A Library of Unicode names and annotation data."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="other"
9 WEB_SITE="https://github.com/fontforge/libuninameslist"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="cacerts autoconf automake libtool bash"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf -i &&
21 automake &&
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }