wok annotate memcached/receipt @ rev 21697

updated postfixadmin (2.3.5 -> 3.2)
author Hans-G?nter Theisgen
date Wed Jun 05 17:09:07 2019 +0100 (2019-06-05)
parents c86e41198e76
children 7a4832a50e06
rev   line source
erjo@11647 1 # SliTaz package receipt.
erjo@11647 2
erjo@11647 3 PACKAGE="memcached"
Hans-G?nter@21430 4 VERSION="1.5.13"
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@21430 21 make -j 1 &&
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
erjo@11647 29 cp -a $install/usr/bin $fs/usr
erjo@11647 30 }