wok view memcached/receipt @ rev 21760

Up mapserver (7.4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 22:38:34 2019 +0200 (2019-06-26)
parents c86e41198e76
children 7a4832a50e06
line source
1 # SliTaz package receipt.
3 PACKAGE="memcached"
4 VERSION="1.5.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="High-performance, distributed memory object caching system."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://memcached.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}files/$TARBALL"
14 DEPENDS="libevent"
15 BUILD_DEPENDS="libevent-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }