# SliTaz package receipt. PACKAGE="c-ares" VERSION="1.18.1" CATEGORY="network" SHORT_DESC="A C library for asynchronous DNS requests." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" WEB_SITE="https://c-ares.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}download/$TARBALL" # What is the latest version available today? current_version() { wget -O - $WEB_SITE 2>/dev/null | \ sed "/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" } # Rules to configure and make the package. compile_rules() { ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_files *.so* }