mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/clamtk: Added (A frontend for ClamAV)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
024d2b8b09
commit
b06f8ace51
6 changed files with 190 additions and 0 deletions
11
system/clamtk/README
Normal file
11
system/clamtk/README
Normal file
|
@ -0,0 +1,11 @@
|
|||
ClamTk is a frontend for ClamAV using Gtk2-perl. It is intended to be
|
||||
an easy to use, light-weight, on-demand scanner for Linux systems.
|
||||
|
||||
This requires clamav and the following perl modules: perl-Date-Calc,
|
||||
libwww-perl, locale-gettext, perl-net-dns, perl-Find-File-Rule and
|
||||
perl-gtk2.
|
||||
|
||||
The provided queue file (clamtk.sqf) has the complete build order of
|
||||
everything you need.
|
||||
|
||||
If you are using XFCE you may wish to install thunar-sendto-clamtk.
|
110
system/clamtk/clamtk.SlackBuild
Normal file
110
system/clamtk/clamtk.SlackBuild
Normal file
|
@ -0,0 +1,110 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for clamtk
|
||||
|
||||
# Copyright 2012 Petar Petrov, ppetrov@paju.oulu.fi
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# 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.
|
||||
#
|
||||
# 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.
|
||||
|
||||
# With help from the clamtk PKGBUILD from Arch linux AUR.
|
||||
# Submitter and maintainer is billy. Thank you!
|
||||
# http://aur.archlinux.org/packages/cl/clamtk/PKGBUILD
|
||||
|
||||
PRGNAM=clamtk
|
||||
VERSION=${VERSION:-4.37}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Change the menu category to System
|
||||
sed -i "s:Categories=GTK;GNOME;Utility;:Categories=System;:" $PRGNAM.desktop
|
||||
|
||||
install -D -m755 $PRGNAM $PKG/usr/bin/$PRGNAM
|
||||
|
||||
for i in lib/* ; do
|
||||
install -D -m644 $i $PKG/usr/lib${LIBDIRSUFFIX}/perl5/vendor_perl/5.12.3/ClamTk/`basename $i`
|
||||
done
|
||||
|
||||
for i in po/*.mo ; do
|
||||
install -D -m644 $i $PKG/usr/share/locale/`basename $i .mo`/LC_MESSAGES/$PRGNAM.mo
|
||||
done
|
||||
|
||||
install -D -m644 $PRGNAM.1.gz $PKG/usr/man/man1/$PRGNAM.1.gz
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cp $PRGNAM.desktop $PKG/usr/share/applications
|
||||
cp $PRGNAM.png $PKG/usr/share/pixmaps
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
CHANGES DISCLAIMER LICENSE README \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/$PRGNAM.sqf > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.sqf
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
system/clamtk/clamtk.info
Normal file
10
system/clamtk/clamtk.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="clamtk"
|
||||
VERSION="4.37"
|
||||
HOMEPAGE="http://clamtk.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/project/clamtk/ClamTk/4.37/clamtk-4.37.tar.gz"
|
||||
MD5SUM="3d6ef28f2ec46256491ca16efe8290c8"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Petar Petrov"
|
||||
EMAIL="ppetrov@paju.oulu.fi"
|
||||
APPROVED="dsomero"
|
37
system/clamtk/clamtk.sqf
Normal file
37
system/clamtk/clamtk.sqf
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Build queue for clamtk
|
||||
perl-Sub-Uplevel
|
||||
perl-Test-Exception
|
||||
perl-Carp-Clan
|
||||
perl-Bit-Vector
|
||||
perl-Date-Calc
|
||||
perl-html-tagset
|
||||
perl-html-parser
|
||||
perl-encode-locale
|
||||
perl-uri-escape
|
||||
perl-http-date
|
||||
perl-lwp-mediatypes
|
||||
perl-file-listing
|
||||
perl-net-http
|
||||
perl-www-robotrules
|
||||
perl-http-message
|
||||
perl-http-negotiate
|
||||
perl-http-cookies
|
||||
perl-http-daemon
|
||||
libwww-perl
|
||||
locale-gettext
|
||||
perl-Text-Glob
|
||||
perl-Number-Compare
|
||||
perl-File-Find-Rule
|
||||
perl-net-ip
|
||||
perl-digest-sha1
|
||||
perl-digest-hmac
|
||||
perl-net-dns
|
||||
perl-extutils-pkgconfig
|
||||
perl-extutils-depends
|
||||
perl-glib
|
||||
perl-test-number-delta
|
||||
perl-cairo
|
||||
perl-pango
|
||||
perl-gtk2
|
||||
clamav
|
||||
clamtk
|
3
system/clamtk/doinst.sh
Normal file
3
system/clamtk/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
19
system/clamtk/slack-desc
Normal file
19
system/clamtk/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
clamtk: clamtk (A frontend for ClamAV)
|
||||
clamtk:
|
||||
clamtk: ClamTk is a frontend for ClamAV using Gtk2-perl.
|
||||
clamtk: It is intended tobe an easy to use, light-weight,
|
||||
clamtk: on-demand scanner for Linux systems.
|
||||
clamtk:
|
||||
clamtk:
|
||||
clamtk:
|
||||
clamtk:
|
||||
clamtk:
|
||||
clamtk:
|
Loading…
Reference in a new issue