wok annotate ssfs/receipt @ rev 14853

x11vnc: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 18 10:50:13 2013 +0000 (2013-07-18)
parents 7f5627fd58f0
children 205d192370e5
rev   line source
pankso@10864 1 # SliTaz package receipt.
pankso@10864 2
pankso@10864 3 PACKAGE="ssfs"
pascal@14805 4 VERSION="1.1"
pankso@10864 5 CATEGORY="network"
pankso@10864 6 SHORT_DESC="Ssfs is SliTaz Secure File Storage."
pankso@10864 7 MAINTAINER="pankso@slitaz.org"
pankso@10864 8 WEB_SITE="http://ssfs.slitaz.org/"
pankso@10864 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@14805 10 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz"
pankso@10865 11 DEPENDS="rsync lsyncd"
pankso@10865 12 SUGGESTED="yad"
pankso@10864 13
pankso@10864 14 # Rules to configure and make the package.
pankso@10864 15 compile_rules()
pankso@10864 16 {
pankso@10864 17 cd $src
pankso@10864 18 make && make DESTDIR=$DESTDIR install
pankso@10864 19 }
pankso@10864 20
pankso@10864 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@10864 22 genpkg_rules()
pankso@10864 23 {
pankso@10864 24 mkdir -p $fs/usr/share
pankso@10864 25 cp -a $install/usr/bin $fs/usr
pankso@10864 26 cp -a $install/usr/share/applications $fs/usr/share
pankso@10864 27 cp -a $install/usr/share/locale $fs/usr/share
pankso@10864 28 cp -a $install/usr/share/doc $fs/usr/share
pankso@10864 29 }