updated on Sun Jan 15 20:01:04 UTC 2012
[aur-mirror.git] / yasat / PKGBUILD
blobaf8a9c47c9da914762c476e4c83a9acef35fedde
1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
4 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
5 ### Please ask support questions about this software in one of:
6 ###   1) The AUR comments; OR
7 ###   2) Upstream forums/maillist etc; OR
8 ###   3) The ArchLinux forums
9 ### I do not always know enough about the software itself, or don't have the
10 ### time to promptly respond to direct emails.
11 ### If you have found a problem with the package/PKGBUILD (as opposed to
12 ### the software) then please do email me or post an AUR comment.
14 pkgname=yasat
15 pkgver=456
16 pkgrel=1
17 pkgdesc="A simple stupid audit tool"
18 arch=('any')
19 license=('GPLv3')
20 depends=('sed' 'grep' 'coreutils')
21 backup=('etc/yasat/yasat.conf')
22 url="http://yasat.sourceforge.net/"
23 source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
24 md5sums=('12708fbb475762435375a24976f4f37e')
26 package() {
27         cd $srcdir/$pkgname
28   
29   chmod +x ./tests/*.test || return 1
30   chmod +x ./plugins/*.test || return 1
31   chmod +x ./yasat.sh || return 1
32   
33   install -Dm0755 yasat.sh $pkgdir/usr/bin/yasat.sh || return 1
34   install -dm755 $pkgdir/usr/share/yasat/ || return 1
35   cp -R plugins $pkgdir/usr/share/yasat/ || return 1
36   cp common $pkgdir/usr/share/yasat/ || return 1
37   cp osdetection $pkgdir/usr/share/yasat/ || return 1
38   install -dm755 $pkgdir/etc/yasat/ || return 1
39   cat > $pkgdir/etc/yasat/yasat.conf << EOT
40 YASAT_ROOT=/usr/share/yasat/
41 PLUGINS_REP=/usr/share/yasat/plugins/
42 EOT
45 # vim:set ts=2 sw=2 et: