wok-next view c-ares/receipt @ rev 21725

busybox: add overrides
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:18:16 2020 +0000 (2020-09-01)
parents 8459b1de4897
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="c-ares"
4 VERSION="1.16.1"
5 CATEGORY="network"
6 SHORT_DESC="A C library for asynchronous DNS requests"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://c-ares.haxx.se/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/basicnet/c-ares.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://c-ares.haxx.se/download/$TARBALL"
15 SPLIT="$PACKAGE-dev"
17 compile_rules()
18 {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make -j1 DESTDIR=$install install
25 }
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 c-ares) copy @std;;
31 *-dev) copy @dev;;
32 esac
33 }