wok annotate memcached/receipt @ rev 23757

fusecloop/extract_compressed_fs: fix v2 convertion
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 17:31:45 2020 +0000 (2020-05-02)
parents b2c38c5ce89f
children 3ae2d1f7b186
rev   line source
erjo@11647 1 # SliTaz package receipt.
erjo@11647 2
erjo@11647 3 PACKAGE="memcached"
Hans-G?nter@23172 4 VERSION="1.6.0"
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 }