diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-07-04 00:45:03 -0700 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-07-04 00:45:03 -0700 | 
| commit | f8db60a31749efc20f8bcb1d3f0a08bc7e8fc1ba (patch) | |
| tree | f16426841976be7eb0c7c8552dc2228b886560c9 | |
| parent | Updated to 11 (diff) | |
| download | hardened-malloc-f8db60a31749efc20f8bcb1d3f0a08bc7e8fc1ba.tar.xz | |
Updated to 12
| -rw-r--r-- | PKGBUILD | 14 | 
1 files changed, 7 insertions, 7 deletions
@@ -7,7 +7,7 @@  pkgname=hardened-malloc  _altname=hardened_malloc -pkgver=11 +pkgver=12  pkgrel=1  pkgdesc="Hardened allocator designed for modern systems"  arch=('x86_64' 'aarch64') @@ -17,25 +17,25 @@ depends=('gcc-libs')  makedepends=('git')  checkdepends=('python')  provides=('libhardened_malloc.so') -source=("git+https://github.com/GrapheneOS/${_altname}#tag=$pkgver?signed") -b2sums=('SKIP') -validpgpkeys=('65EEFE022108E2B708CBFCF7F9E712E59AF5F22A') # Daniel Micay <danielmicay@gmail.com> +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${pkgver}.tar.gz") +b2sums=('f96b0c27210de52a669036d77de987e4dac7662f416c25925b1d662c9881e2117141e1e2155ed0daeb60b929e1b0ba97d7aabece9c370798cfd7125302e56784') +#validpgpkeys=('65EEFE022108E2B708CBFCF7F9E712E59AF5F22A') # Daniel Micay <danielmicay@gmail.com>  build() { -  cd "${_altname}" +  cd "${_altname}-${pkgver}"    make VARIANT=default    make VARIANT=light  }  check() { -  cd "${_altname}" +  cd "${_altname}-${pkgver}"    make test  }  package() { -  cd "${_altname}" +  cd "${_altname}-${pkgver}"    install -vDm755 -t "$pkgdir/usr/lib" out/libhardened_malloc.so out-light/libhardened_malloc-light.so    install -vDm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"  | 
