summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-02-09 13:08:00 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-02-09 13:08:00 -0800
commit46b00a315e48b658f30b7351831a7226b89948ec (patch)
tree2b48314812c731bd729b2fcea8b97073aaed5afc
parentUpdated to 10 (diff)
downloadhardened-malloc-master.tar.xz
Updated to 11HEADmaster
-rw-r--r--PKGBUILD10
1 files changed, 4 insertions, 6 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 686f33d..de2369d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=hardened-malloc
_altname=hardened_malloc
-pkgver=10
+pkgver=11
pkgrel=1
pkgdesc="Hardened allocator designed for modern systems"
arch=('x86_64' 'aarch64')
@@ -31,14 +31,12 @@ build() {
check() {
cd "${_altname}"
- make CONFIG_WERROR=false test
+ make test
}
package() {
cd "${_altname}"
- 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"
+ 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"
}