wok-6.x annotate libmcs/receipt @ rev 9925
apr: use --with-egd --with-devrandom (apache dont build)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue May 17 23:24:56 2011 +0200 (2011-05-17) |
parents | 02bbaa9d12ba |
children | fe88c6375da6 |
rev | line source |
---|---|
mimas@2028 | 1 # SliTaz package receipt. |
mimas@2028 | 2 |
mimas@2028 | 3 PACKAGE="libmcs" |
mimas@2028 | 4 VERSION="0.7.1" |
pascal@2054 | 5 CATEGORY="system-tools" |
mimas@2028 | 6 SHORT_DESC="Library for configuration storage" |
mimas@2028 | 7 MAINTAINER="mimas@slitaz.org" |
mimas@2028 | 8 TARBALL="$PACKAGE-$VERSION.tgz" |
mimas@2028 | 9 WEB_SITE="http://www.atheme.org/libmcs/" |
mimas@2028 | 10 WGET_URL="http://distfiles.atheme.org/$TARBALL" |
pascal@2477 | 11 DEPENDS="libmowgli" |
erjo@9919 | 12 BUILD_DEPENDS="libmowgli-dev" |
mimas@2028 | 13 |
mimas@2028 | 14 # Rules to configure and make the package. |
mimas@2028 | 15 compile_rules() |
mimas@2028 | 16 { |
mimas@2028 | 17 cd $src |
erjo@9919 | 18 ./configure && |
erjo@9919 | 19 make && |
erjo@9919 | 20 make DESTDIR=$DESTDIR install |
mimas@2028 | 21 } |
mimas@2028 | 22 |
mimas@2028 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2028 | 24 genpkg_rules() |
mimas@2028 | 25 { |
mimas@2028 | 26 mkdir -p $fs/usr/lib |
mimas@2028 | 27 cp -a $_pkg/usr/bin $fs/usr |
mimas@2028 | 28 cp -a $_pkg/usr/lib/libmcs.so* $fs/usr/lib/ |
mimas@2028 | 29 cp -a $_pkg/usr/lib/mcs $fs/usr/lib/ |
mimas@2028 | 30 |
mimas@2028 | 31 } |
mimas@2028 | 32 |