wok annotate memcached/receipt @ rev 24915

updated monitorix (3.12.0 -> 3.14.0)
author Hans-G?nter Theisgen
date Sat Apr 09 16:53:38 2022 +0100 (2022-04-09)
parents 83b97236db32
children 4f02a37747b4
rev   line source
erjo@11647 1 # SliTaz package receipt.
erjo@11647 2
erjo@11647 3 PACKAGE="memcached"
Hans-G?nter@24901 4 VERSION="1.6.15"
erjo@11647 5 CATEGORY="system-tools"
al@20422 6 SHORT_DESC="High-performance, distributed memory object caching system."
erjo@11647 7 MAINTAINER="erjo@slitaz.org"
pascal@15584 8 LICENSE="BSD"
Hans-G?nter@21430 9 WEB_SITE="https://memcached.org/"
Hans-G?nter@21430 10
erjo@11647 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21430 12 WGET_URL="${WEB_SITE}files/$TARBALL"
erjo@11647 13
erjo@11647 14 DEPENDS="libevent"
erjo@11647 15 BUILD_DEPENDS="libevent-dev"
erjo@11647 16
pascal@24427 17 # What is the latest version available today?
pascal@24427 18 current_version()
pascal@24427 19 {
pascal@24427 20 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24427 21 sed '/id="ver"/!d;s|.*>v||;s|<.*||'
pascal@24427 22 }
pascal@24427 23
erjo@11647 24 # Rules to configure and make the package.
erjo@11647 25 compile_rules()
erjo@11647 26 {
Hans-G?nter@21430 27 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@23172 28 make &&
Hans-G?nter@21430 29 make install
erjo@11647 30 }
erjo@11647 31
erjo@11647 32 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11647 33 genpkg_rules()
erjo@11647 34 {
Hans-G?nter@24901 35 cook_copy_folders bin
erjo@11647 36 }