wok-next annotate c-ares/receipt @ rev 21276

try to build gens-gs again
author Hans-G?nter Theisgen
date Sat Dec 07 15:51:18 2019 +0100 (2019-12-07)
parents d5aab818505e
children 39afd1f4ffe0
rev   line source
al@19797 1 # SliTaz package receipt v2.
pascal@18459 2
pascal@18459 3 PACKAGE="c-ares"
al@21036 4 VERSION="1.15.0"
pascal@18459 5 CATEGORY="network"
al@19797 6 SHORT_DESC="A C library for asynchronous DNS requests"
pascal@18459 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18459 8 LICENSE="MIT"
al@19797 9 WEB_SITE="https://c-ares.haxx.se/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/basicnet/c-ares.html"
al@19797 11
pascal@18459 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20612 13 WGET_URL="https://c-ares.haxx.se/download/$TARBALL"
pascal@18459 14
al@21020 15 SPLIT="$PACKAGE-dev"
al@19797 16
al@20569 17 compile_rules() {
al@20612 18 ./configure \
al@20612 19 --disable-static \
al@20612 20 $CONFIGURE_ARGS &&
al@20569 21 fix libtool &&
pascal@18459 22 make &&
al@21020 23 make -j1 DESTDIR=$install install
pascal@18459 24 }
pascal@18459 25
al@20569 26 genpkg_rules() {
al@19797 27 case $PACKAGE in
al@19797 28 c-ares) copy @std;;
al@19797 29 *-dev) copy @dev;;
al@19797 30 esac
pascal@18459 31 }