diff options
Diffstat (limited to 'source/l/argon2/argon2.SlackBuild')
-rwxr-xr-x | source/l/argon2/argon2.SlackBuild | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/source/l/argon2/argon2.SlackBuild b/source/l/argon2/argon2.SlackBuild index cb7d48d7..44cef284 100755 --- a/source/l/argon2/argon2.SlackBuild +++ b/source/l/argon2/argon2.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2019 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2019, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -106,10 +106,6 @@ cp -a man/argon2.1 $PKG/usr/man/man1 chown root:root $PKG/usr/man/man1/argon2.1 chmod 644 $PKG/usr/man/man1/argon2.1 -# Install pkgconfig file: -mkdir $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig -grep -v "^##" libargon2.pc | sed "s|/@HOST_MULTIARCH@|${LIBDIRSUFFIX}|g" | sed "s|@UPSTREAM_VER@|$VERSION|g" > $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig/libargon2.pc - # Strip binaries: find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null |