Date: Tuesday, May 1, 2018 @ 01:33:15 Author: anthraxx Revision: 318550
upgpkg: pax-utils 1.2.3-1 Modified: pax-utils/trunk/PKGBUILD ----------+ PKGBUILD | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-05-01 01:04:40 UTC (rev 318549) +++ PKGBUILD 2018-05-01 01:33:15 UTC (rev 318550) @@ -1,34 +1,37 @@ -# $Id$ -# Maintainer: Timothy Redaelli <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor: Timothy Redaelli <[email protected]> # Contributor: sh0 <[email protected]> # Contributor: Maxwel <[email protected]> pkgname=pax-utils -pkgver=1.2.2 -pkgrel=3 -pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for security relevant properties' -url='http://hardened.gentoo.org/pax-utils.xml' +pkgver=1.2.3 +pkgrel=1 +pkgdesc='ELF utils that can check files for security relevant properties' +url='https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities' arch=('x86_64') -license=('GPL') +license=('GPL2') depends=('bash' 'libcap' 'python-pyelftools') -source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz") -sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9') +source=(https://dev.gentoo.org/~slyfox/distfiles/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d231b1a34aea2b9205c24fada79a8251d4c3fbcce49367fc055fe43e4c9783b2') +sha512sums=('efcbce49aa7e5cd433f9b3fbc8fa82f6d7b0eb80ec40aafde453d6fe96e3565e066e5020f04d71537d8d4e820147f4203c0df2dd330ebb1358a26def3dd5484c') _make() { - make USE_CAP='yes' USE_PYTHON='yes' "$@" + make USE_CAP=yes USE_PYTHON=yes "$@" } build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} _make } check() { - cd "${srcdir}/${pkgname}-${pkgver}" - LD_LIBRARY_PATH="/usr/lib" _make check + cd ${pkgname}-${pkgver} + LD_LIBRARY_PATH=/usr/lib _make check } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} _make DESTDIR="${pkgdir}" install } + +# vim: ts=2 sw=2 et:
