wok view c-ares/receipt @ rev 19466

Up: libgsf (1.14.40), goffice (0.10.32), gnumeric (1.12.32).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 25 01:28:09 2016 +0300 (2016-10-25)
parents f083b24a7267
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="c-ares"
4 VERSION="1.10.0"
5 CATEGORY="network"
6 SHORT_DESC="A C library for asynchronous DNS requests."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://c-ares.haxx.se/"
11 WGET_URL="${WEB_SITE}download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure --prefix=/usr --mandir=/usr/share/man \
17 $CONFIGURE_ARGS &&
18 make &&
19 make -j 1 DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }