1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Source: libipc-sharedcache-perl
Section: interpreters
Priority: extra
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.5.8
Upstream-Source: <URL:http://www.cpan.org/modules/by-module/IPC/IPC-SharedCache-([0-9].*)\.tar.gz>
Description: perl IPC::SharedCache - manage a cache in SysV IPC shared memory
Packaged-For: Debian
Copyright: GPL
IPC::SharedCache - a Perl module to manage a SysV IPC shared cache.
Copyright (C) 2000 Sam Tregar (sam@tregar.com)
Build-Depends-Indep: perl (>= 5.8)
Build: sh
CC=gcc
CFLAGS="-Wall -g"
if [ "${DEB_BUILD_OPTIONS#*noopt}" != "$DEB_BUILD_OPTIONS" ]; then
CFLAGS="$CFLAGS -O0"
else
CFLAGS="$CFLAGS -O2"
fi
PERL=${PERL:-/usr/bin/perl}
$PERL Makefile.PL INSTALLDIRS=vendor
make OPTIMIZE="$CFLAGS" CC="$CC"
Clean: sh
test -f Makefile && touch Makefile && make distclean || true
Package: libipc-sharedcache-perl
Architecture: all
Depends: libipc-sharelite-perl, []
Description: perl IPC::SharedCache - manage a cache in SysV IPC shared memory
This module attempts to make shared memory easy to use for one
specific application - a shared memory cache, provides a shared
memory cache accessed as a tied hash.
Install: sh
PERL=${PERL:-/usr/bin/perl}
make install PREFIX=$ROOT/usr
yada install -doc README
yada install -doc -as changelog Changes
yada perl
|