# SliTaz package receipt. PACKAGE="neon" VERSION="0.32.2" CATEGORY="development" TAGS="http webdav" SHORT_DESC="Neon HTTP and WebDAV client library." MAINTAINER="lehswe@gmail.com" LICENSE="GPL2" WEB_SITE="https://notroj.github.io/neon/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://notroj.github.io/$PACKAGE/$TARBALL" DEPENDS="expat libcomerr3 libkrb5 libssl zlib" BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev xmlto zlib-dev" # What is the latest version available today? current_version() { wget -O - https://notroj.github.io/neon/ 2>/dev/null | \ sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --with-ssl=openssl \ --mandir=/usr/share/man \ --enable-shared \ --disable-static \ --with-libxml2 \ $CONFIGURE_ARGS && make && make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders bin cook_copy_files *.so* }