wok view memcached/receipt @ rev 15584

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 17:02:58 2013 +0000 (2013-11-30)
parents 8fa94b1f2080
children c86e41198e76
line source
1 # SliTaz package receipt.
3 PACKAGE="memcached"
4 VERSION="1.4.14"
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="http://memcached.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://memcached.googlecode.com/files/$TARBALL"
13 DEPENDS="libevent"
14 BUILD_DEPENDS="libevent-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }