wok view funionfs/receipt @ rev 676

busybox/tar: accept --wildcards arg (do nothing)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 24 16:36:30 2008 +0000 (2008-04-24)
parents
children 5d5fa3f27a35
line source
1 # SliTaz package receipt.
3 PACKAGE="funionfs"
4 VERSION="0.4.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Union filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 BUILD_DEPENDS="fuse-dev"
9 DEPENDS="fuse"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://funionfs.apiou.org/"
12 WGET_URL="${WEB_SITE}file/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --bindir=/bin \
19 --libexecdir=/usr/bin --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $_pkg/bin $fs
29 }