wok annotate unionfs-fuse/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents f78140912e32
children 6135577f4d08
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"
pascal@15601 8 LICENSE="BSD"
slaxemulator@8979 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@8979 10 WEB_SITE="http://podgorny.cz/moin/UnionFsFuse"
slaxemulator@8979 11 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
slaxemulator@8979 12
pascal@15601 13 DEPENDS="fuse"
pascal@15601 14 BUILD_DEPENDS="cmake fuse-dev"
pascal@15601 15
slaxemulator@8979 16 # Rules to configure and make the package.
slaxemulator@8979 17 compile_rules()
slaxemulator@8979 18 {
slaxemulator@8979 19 cd $src
slaxemulator@8979 20 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \
slaxemulator@8979 21 make && make install
slaxemulator@8979 22 }
slaxemulator@8979 23
slaxemulator@8979 24 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@8979 25 genpkg_rules()
slaxemulator@8979 26 {
slaxemulator@8979 27 mkdir -p $fs/usr
pascal@15601 28 cp -a $install/usr/bin $fs/usr
slaxemulator@8979 29 }
slaxemulator@8979 30