diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2016-04-06 09:27:18 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2016-04-07 05:49:30 -0500 |
commit | 1da3fc83ba8d7e8cc7fb22486a0320ba73a2d091 (patch) | |
tree | db5ef327cc055e496bcb4ba29a44b81abeb9733d /python/llfuse/llfuse.SlackBuild | |
parent | e83db2273af3da21918902d56627a209d6b4929c (diff) | |
download | slackbuilds-1da3fc83ba8d7e8cc7fb22486a0320ba73a2d091.tar.gz |
python/llfuse: Updated for version 1.0 + new maintainer.
Signed-off-by: Marcel Saegebarth <marc@mos6581.de>
Diffstat (limited to 'python/llfuse/llfuse.SlackBuild')
-rw-r--r-- | python/llfuse/llfuse.SlackBuild | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/python/llfuse/llfuse.SlackBuild b/python/llfuse/llfuse.SlackBuild index 2d2fe47f76..109c793dc9 100644 --- a/python/llfuse/llfuse.SlackBuild +++ b/python/llfuse/llfuse.SlackBuild @@ -1,29 +1,32 @@ #!/bin/sh -# Slackware build script for LLFUSE +# Slackware build script for "llfuse". -# Copyright 2015 Andrzej Telszewski, Sabadell +# Copyright 2015-2016 Andrzej Telszewski, Sabadell +# Copyright 2016 Marcel Saegebarth <marc@mos6581.de> # All rights reserved. # -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: # -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. # -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=llfuse -VERSION=${VERSION:-0.43} +VERSION=${VERSION:-1.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -81,7 +84,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html -cp -a examples Changes.rst LICENSE $PKG/usr/doc/$PRGNAM-$VERSION +cp -a examples Changes.rst LICENSE README.rst $PKG/usr/doc/$PRGNAM-$VERSION cp -a doc/html/*.html doc/html/searchindex.js doc/html/_static \ $PKG/usr/doc/$PRGNAM-$VERSION/html cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |