wok-6.x annotate unionfs-fuse/receipt @ rev 10757
nanochess: get source in $SOURCES_REPOSITORY
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue May 31 11:34:51 2011 +0200 (2011-05-31) |
parents | 3f84434bc7ad |
children | 23c3aed67cd9 |
rev | line source |
---|---|
slaxemulator@8979 | 1 # SliTaz package receipt. |
slaxemulator@8979 | 2 |
slaxemulator@8979 | 3 PACKAGE="unionfs-fuse" |
slaxemulator@8979 | 4 VERSION="0.24" |
slaxemulator@8979 | 5 CATEGORY="system-tools" |
slaxemulator@8979 | 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." |
slaxemulator@8979 | 7 MAINTAINER="slaxemulator@gmail.com" |
slaxemulator@8979 | 8 DEPENDS="fuse" |
pascal@10482 | 9 BUILD_DEPENDS="cmake fuse-dev" |
slaxemulator@8979 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@8979 | 11 WEB_SITE="http://podgorny.cz/moin/UnionFsFuse" |
slaxemulator@8979 | 12 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL" |
slaxemulator@8979 | 13 |
slaxemulator@8979 | 14 # Rules to configure and make the package. |
slaxemulator@8979 | 15 compile_rules() |
slaxemulator@8979 | 16 { |
slaxemulator@8979 | 17 cd $src |
slaxemulator@8979 | 18 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \ |
slaxemulator@8979 | 19 make && make install |
slaxemulator@8979 | 20 } |
slaxemulator@8979 | 21 |
slaxemulator@8979 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8979 | 23 genpkg_rules() |
slaxemulator@8979 | 24 { |
slaxemulator@8979 | 25 mkdir -p $fs/usr |
slaxemulator@8979 | 26 cp -a $_pkg/usr/bin $fs/usr |
slaxemulator@8979 | 27 } |
slaxemulator@8979 | 28 |