wok view libmcs/receipt @ rev 10019

thunar-vfs: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 12:30:41 2011 +0200 (2011-05-19)
parents 02bbaa9d12ba
children fe88c6375da6
line source
1 # SliTaz package receipt.
3 PACKAGE="libmcs"
4 VERSION="0.7.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for configuration storage"
7 MAINTAINER="mimas@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tgz"
9 WEB_SITE="http://www.atheme.org/libmcs/"
10 WGET_URL="http://distfiles.atheme.org/$TARBALL"
11 DEPENDS="libmowgli"
12 BUILD_DEPENDS="libmowgli-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/libmcs.so* $fs/usr/lib/
29 cp -a $_pkg/usr/lib/mcs $fs/usr/lib/
31 }