diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2022-01-19 21:33:58 -0800 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2022-01-19 21:33:58 -0800 | 
| commit | 0f32df701020cfd7f6c92453d39adb2385ed6608 (patch) | |
| tree | c87e0c8f9646e2fdb69cb066e18b0ddbb1f0ed3e | |
| parent | Updated to 9 (diff) | |
| download | hardened-malloc-0f32df701020cfd7f6c92453d39adb2385ed6608.tar.xz | |
Updated to 10
| -rw-r--r-- | PKGBUILD | 9 | 
1 files changed, 6 insertions, 3 deletions
@@ -7,7 +7,7 @@  pkgname=hardened-malloc  _altname=hardened_malloc -pkgver=9 +pkgver=10  pkgrel=1  pkgdesc="Hardened allocator designed for modern systems"  arch=('x86_64' 'aarch64') @@ -24,7 +24,8 @@ validpgpkeys=('65EEFE022108E2B708CBFCF7F9E712E59AF5F22A') # Daniel Micay <daniel  build() {    cd "${_altname}" -  make +  make VARIANT=default +  make VARIANT=light  }  check() { @@ -36,6 +37,8 @@ check() {  package() {    cd "${_altname}" -  install -Dm755 --target-directory="$pkgdir/usr/lib" libhardened_malloc.so +  install -Dm755 --target-directory="$pkgdir/usr/lib" \ +    out/libhardened_malloc.so \ +    out-light/libhardened_malloc-light.so    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"  }  | 
