diff options
author | Arn0 <yth@ythogtha.org> | 2024-01-18 16:04:58 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-01-19 09:51:04 +0700 |
commit | a1327690d4a58e4e056307367f63c6304167e85b (patch) | |
tree | 23d9470573c0eb04e02672b685d052b0475de669 /network | |
parent | 4a7fa349b8146d9348a12c093a3d8133231f60f7 (diff) |
network/sshuttle: Added aarch64 flags
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/sshuttle/sshuttle.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/network/sshuttle/sshuttle.SlackBuild b/network/sshuttle/sshuttle.SlackBuild index 97c592b836e0..80ce289aed1d 100644 --- a/network/sshuttle/sshuttle.SlackBuild +++ b/network/sshuttle/sshuttle.SlackBuild @@ -62,6 +62,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" @@ -84,10 +87,6 @@ find -L . \ python3 setup.py install --root=$PKG -mkdir -p $PKG/usr/man/man8 -cat $TMP/$PRGNAM-$VERSION/Documentation/$PRGNAM.8 | gzip -9c > \ -$PKG/usr/man/man8/$PRGNAM.8.gz - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ CHANGES.rst LICENSE README.rst \ |