wok annotate memcached/receipt @ rev 24061

Add lz4ultra
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 12 09:05:17 2021 +0000 (2021-06-12)
parents 7a4832a50e06
children 83b97236db32
rev   line source
erjo@11647 1 # SliTaz package receipt.
erjo@11647 2
erjo@11647 3 PACKAGE="memcached"
pascal@23836 4 VERSION="1.6.6"
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
erjo@11647 17 # Rules to configure and make the package.
erjo@11647 18 compile_rules()
erjo@11647 19 {
Hans-G?nter@21430 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@23172 21 make &&
Hans-G?nter@21430 22 make install
erjo@11647 23 }
erjo@11647 24
erjo@11647 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11647 26 genpkg_rules()
erjo@11647 27 {
erjo@11647 28 mkdir $fs/usr
Hans-G?nter@23172 29 cp -a $install/usr/bin $fs/usr
erjo@11647 30 }