diff options
author | Arn0 <yth@ythogtha.org> | 2024-01-18 16:05:08 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-01-19 09:51:05 +0700 |
commit | 7708447f006db07dc14eec116faf5a9db56e925c (patch) | |
tree | b1fa7c661fd36eaab355ba45170d1f263735ab45 /libraries | |
parent | 302fbbe0e5cce17d310aedf8322f7aa9940caa8a (diff) |
libraries/htmlcxx: Added aarch64 flags
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/htmlcxx/htmlcxx.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/htmlcxx/htmlcxx.SlackBuild b/libraries/htmlcxx/htmlcxx.SlackBuild index 6853a4aaa72be..1be7a7db63c71 100644 --- a/libraries/htmlcxx/htmlcxx.SlackBuild +++ b/libraries/htmlcxx/htmlcxx.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="" @@ -101,7 +104,7 @@ make make install-strip DESTDIR=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ASF-2.0 AUTHORS COPYING ChangeLog INSTALL LGPL_V2 README \ +cp -a ASF-2.0 AUTHORS COPYING ChangeLog LGPL_V2 README \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |