Date: Wednesday, April 16, 2014 @ 19:55:01 Author: thestinger Revision: 109610
upgpkg: checksec 1.5-4 install as `checksec` instead of `checksec.sh` and tweak the pkgdesc Modified: checksec/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-04-16 17:23:59 UTC (rev 109609) +++ PKGBUILD 2014-04-16 17:55:01 UTC (rev 109610) @@ -3,17 +3,17 @@ pkgname=checksec pkgver=1.5 -pkgrel=3 -pkgdesc='Tool designed to test what standard Linux OS and PaX security features are being used.' +pkgrel=4 +pkgdesc='Tool designed to test which standard Linux OS and PaX security features are being used' url='http://www.trapkit.de/tools/checksec.html' arch=('any') license=('BSD') depends=(bash) -source=("http://www.trapkit.de/tools/checksec.sh") +source=('http://www.trapkit.de/tools/checksec.sh') md5sums=('075996be339ab16ad7b94d6de3ee07bd') package() { - install -Dm755 checksec.sh "$pkgdir/usr/bin/checksec.sh" + install -Dm755 checksec.sh "$pkgdir/usr/bin/checksec" install -d "$pkgdir/usr/share/licenses/$pkgname" tail -n +3 checksec.sh | head -32 | cut -c3- > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }
