wok-undigest view libguess/receipt @ rev 1228

updated glib and glib-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 13:48:24 2020 +0100 (2020-09-09)
parents 4b460003e5ad
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libguess"
4 VERSION="1.2"
5 COMMIT="31197ce0ff2e9a05fe8d8b2f45aa896a7beee201"
6 CATEGORY="development"
7 SHORT_DESC="Character set guessing library"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="other"
10 WEB_SITE="http://atheme.org/projects/libguess.html"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/kaniini/libguess/archive/$COMMIT.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="wget cacerts autoconf automake coreutils-file-attributes"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh
21 TPUT=/bin/true ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }