wok view unionfs-fuse/receipt @ rev 11417

add: libesmtp, libesmtp-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Dec 14 02:29:52 2011 +0100 (2011-12-14)
parents 3f84434bc7ad
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="unionfs-fuse"
4 VERSION="0.24"
5 CATEGORY="system-tools"
6 SHORT_DESC="unionfs-fuse is an effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="fuse"
9 BUILD_DEPENDS="cmake fuse-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://podgorny.cz/moin/UnionFsFuse"
12 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \
19 make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 }