wok annotate sshfs-fuse/receipt @ rev 19766

mysql, mariadb: fix pre_install status (thanks Aleksej)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 20 09:35:09 2017 +0100 (2017-02-20)
parents 22244c3bcd35
children c03f68de51be
rev   line source
pascal@914 1 # SliTaz package receipt.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
pascal@19626 4 VERSION="2.8"
pascal@914 5 CATEGORY="system-tools"
pascal@914 6 SHORT_DESC="SSH Filesystem implemented with FUSE."
pascal@914 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@19626 9 TARBALL="sshfs_$VERSION.tar.gz"
pascal@19626 10 WEB_SITE="https://github.com/libfuse/sshfs"
pascal@19626 11 WGET_URL="https://github.com/libfuse/sshfs/archive/$TARBALL"
pankso@16381 12 HOST_ARCH="i486 arm"
pascal@17131 13 PROVIDE="rsshfs sshfs"
pascal@17141 14 TAGS="ssh"
pascal@914 15
pascal@19670 16 DEPENDS="fuse ssh sftp-server glib"
pascal@19670 17 SUGGESTED="openssh"
pascal@19627 18 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config autoconf automake libtool"
pascal@15000 19
pascal@914 20 # Rules to configure and make the package.
pascal@914 21 compile_rules()
pascal@914 22 {
pascal@19627 23 libtoolize --force
pascal@19627 24 aclocal
pascal@19627 25 autoheader
pascal@19627 26 automake --force-missing --add-missing
pascal@19627 27 autoconf
pascal@914 28 ./configure --prefix=/usr \
pascal@1514 29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 30 make &&
pascal@15000 31 make DESTDIR=$DESTDIR install
pascal@914 32 }
pascal@914 33
pascal@914 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 35 genpkg_rules()
pascal@914 36 {
pascal@19626 37 mkdir -p $fs/usr $install/usr/share/doc
pascal@15000 38 cp -a $install/usr/bin $fs/usr
pascal@16756 39 cp -a $stuff/rsshfs $fs/usr/bin
pascal@19626 40 cp $src/FAQ* $install/usr/share/doc
pascal@914 41 }