2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
# Slackware build script for llvm
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# Copyright 2008-2016 Heinz Wiesinger, Amsterdam, The Netherlands
|
2024-03-07 21:40:08 +01:00
|
|
|
# Copyright 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Patrick J. Volkerding, Sebeka, MN, USA
|
2012-09-26 03:10:42 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
PKGNAM=llvm
|
2024-06-21 02:44:39 +02:00
|
|
|
VERSION=${VERSION:-$(echo llvmorg-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
2024-10-16 21:11:30 +02:00
|
|
|
BUILD=${BUILD:-1}
|
2022-07-05 22:33:18 +02:00
|
|
|
|
2018-09-21 20:51:07 +02:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
Fri Jul 19 20:08:29 UTC 2024
a/aaa_libraries-15.1-x86_64-32.txz: Rebuilt.
Added: libgpg-error.so.0.37.0.
Upgraded: libcap.so.2.70, liblzma.so.5.6.2, libpcre2-8.so.0.13.0,
libglib-2.0.so.0.8000.4, libgmodule-2.0.so.0.8000.4,
libgobject-2.0.so.0.8000.4, libgthread-2.0.so.0.8000.4,
libstdc++.so.6.0.33, libunwind.so.8.1.0.
Removed: libboost_*.so.1.84.0
The addition of libgpg-error to this package should work around the issue
upgrading from 15.0 to -current using slackpkg. Thanks to Stuart Winter.
d/llvm-18.1.8-x86_64-2.txz: Rebuilt.
Add WebAssembly target. Thanks to Heinz Wiesinger.
Adjust compiler flags to what will likely be our new standard.
Qt6 requires newer opcodes than -march=i586, and enough things have begun
to include SSE2 instructions (without providing configure flags to opt-out)
that trying to retain compatibility with CPUs from the 1990s just isn't
going to work any more. My apologies if this causes your antique computer
to get illegal instruction errors, but the solution will have to be sourcing
an antique operating system for it.
On 64-bit we will make the compiler flags for -march and -mtune explicit.
l/libnl3-3.10.0-x86_64-1.txz: Upgraded.
l/orc-0.4.39-x86_64-1.txz: Upgraded.
x/egl-wayland-1.1.14-x86_64-1.txz: Upgraded.
2024-07-19 22:08:29 +02:00
|
|
|
i?86) ARCH=i686 ;;
|
2012-09-26 03:10:42 +02:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2024-06-21 02:44:39 +02:00
|
|
|
# Select projects to build:
|
|
|
|
if [ "$ARCH" = "i586" -o "$ARCH" = "i686" ]; then
|
|
|
|
# bolt and flang are not available on 32-bit
|
|
|
|
LLVM_ENABLE_PROJECTS=${LLVM_ENABLE_PROJECTS:-"clang;clang-tools-extra;compiler-rt;lld;lldb;llvm;mlir;openmp;polly"}
|
|
|
|
else
|
|
|
|
LLVM_ENABLE_PROJECTS=${LLVM_ENABLE_PROJECTS:-"bolt;clang;clang-tools-extra;compiler-rt;flang;lld;lldb;llvm;mlir;openmp;polly"}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Select runtimes to build:
|
|
|
|
LLVM_ENABLE_RUNTIMES=${LLVM_ENABLE_RUNTIMES:-"libcxx;libcxxabi"}
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-$PKGNAM
|
2022-06-28 21:16:08 +02:00
|
|
|
BUILDDIR=${TMP}/llvm-build-${VERSION}
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2023-03-31 20:01:09 +02:00
|
|
|
# Ignore that which should be ignored to avoid long build times and
|
|
|
|
# massive warning spew:
|
2023-09-25 21:19:27 +02:00
|
|
|
IGNORE_GNU_EXTENSIONS=${IGNORE_GNU_EXTENSIONS:--Wno-unknown-warning-option -Wno-gnu-line-marker -Wno-gnu-anonymous-struct -Wno-gnu-include-next}
|
2023-03-31 20:01:09 +02:00
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
2023-03-31 20:01:09 +02:00
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686 $IGNORE_GNU_EXTENSIONS"
|
2012-09-26 03:10:42 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
Fri Jul 19 20:08:29 UTC 2024
a/aaa_libraries-15.1-x86_64-32.txz: Rebuilt.
Added: libgpg-error.so.0.37.0.
Upgraded: libcap.so.2.70, liblzma.so.5.6.2, libpcre2-8.so.0.13.0,
libglib-2.0.so.0.8000.4, libgmodule-2.0.so.0.8000.4,
libgobject-2.0.so.0.8000.4, libgthread-2.0.so.0.8000.4,
libstdc++.so.6.0.33, libunwind.so.8.1.0.
Removed: libboost_*.so.1.84.0
The addition of libgpg-error to this package should work around the issue
upgrading from 15.0 to -current using slackpkg. Thanks to Stuart Winter.
d/llvm-18.1.8-x86_64-2.txz: Rebuilt.
Add WebAssembly target. Thanks to Heinz Wiesinger.
Adjust compiler flags to what will likely be our new standard.
Qt6 requires newer opcodes than -march=i586, and enough things have begun
to include SSE2 instructions (without providing configure flags to opt-out)
that trying to retain compatibility with CPUs from the 1990s just isn't
going to work any more. My apologies if this causes your antique computer
to get illegal instruction errors, but the solution will have to be sourcing
an antique operating system for it.
On 64-bit we will make the compiler flags for -march and -mtune explicit.
l/libnl3-3.10.0-x86_64-1.txz: Upgraded.
l/orc-0.4.39-x86_64-1.txz: Upgraded.
x/egl-wayland-1.1.14-x86_64-1.txz: Upgraded.
2024-07-19 22:08:29 +02:00
|
|
|
SLKCFLAGS="-O2 -march=pentium4 -mtune=generic $IGNORE_GNU_EXTENSIONS"
|
2012-09-26 03:10:42 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
Fri Jul 19 20:08:29 UTC 2024
a/aaa_libraries-15.1-x86_64-32.txz: Rebuilt.
Added: libgpg-error.so.0.37.0.
Upgraded: libcap.so.2.70, liblzma.so.5.6.2, libpcre2-8.so.0.13.0,
libglib-2.0.so.0.8000.4, libgmodule-2.0.so.0.8000.4,
libgobject-2.0.so.0.8000.4, libgthread-2.0.so.0.8000.4,
libstdc++.so.6.0.33, libunwind.so.8.1.0.
Removed: libboost_*.so.1.84.0
The addition of libgpg-error to this package should work around the issue
upgrading from 15.0 to -current using slackpkg. Thanks to Stuart Winter.
d/llvm-18.1.8-x86_64-2.txz: Rebuilt.
Add WebAssembly target. Thanks to Heinz Wiesinger.
Adjust compiler flags to what will likely be our new standard.
Qt6 requires newer opcodes than -march=i586, and enough things have begun
to include SSE2 instructions (without providing configure flags to opt-out)
that trying to retain compatibility with CPUs from the 1990s just isn't
going to work any more. My apologies if this causes your antique computer
to get illegal instruction errors, but the solution will have to be sourcing
an antique operating system for it.
On 64-bit we will make the compiler flags for -march and -mtune explicit.
l/libnl3-3.10.0-x86_64-1.txz: Upgraded.
l/orc-0.4.39-x86_64-1.txz: Upgraded.
x/egl-wayland-1.1.14-x86_64-1.txz: Upgraded.
2024-07-19 22:08:29 +02:00
|
|
|
SLKCFLAGS="-O2 -march=x86-64 -mtune=generic -fPIC $IGNORE_GNU_EXTENSIONS"
|
2012-09-26 03:10:42 +02:00
|
|
|
LIBDIRSUFFIX="64"
|
|
|
|
else
|
2023-03-31 20:01:09 +02:00
|
|
|
SLKCFLAGS="-O2 $IGNORE_GNU_EXTENSIONS"
|
2012-09-26 03:10:42 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
# Python3 short version:
|
|
|
|
PY3=$(python3 -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())' | cut -f 2 -d n | cut -f 1 -d /)
|
|
|
|
|
2022-06-28 21:16:08 +02:00
|
|
|
rm -rf $PKG $BUILDDIR
|
|
|
|
mkdir -p $TMP $PKG $BUILDDIR
|
|
|
|
cd $BUILDDIR
|
|
|
|
|
|
|
|
# Add a fake configure script so the cleanup script used here at Slackware
|
|
|
|
# knows to delete this stuff later. Other folks can just ignore this... it
|
|
|
|
# doesn't have any other purpose.
|
|
|
|
touch configure
|
|
|
|
chmod 755 configure
|
|
|
|
|
2024-06-21 02:44:39 +02:00
|
|
|
echo "Extracting $CWD/llvmorg-$VERSION.tar.?z..."
|
|
|
|
tar xf $CWD/llvmorg-$VERSION.tar.?z || exit 1
|
|
|
|
cd llvm-project-llvmorg-$VERSION || cd llvmorg-$VERSION || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
|
Fri Jul 19 20:08:29 UTC 2024
a/aaa_libraries-15.1-x86_64-32.txz: Rebuilt.
Added: libgpg-error.so.0.37.0.
Upgraded: libcap.so.2.70, liblzma.so.5.6.2, libpcre2-8.so.0.13.0,
libglib-2.0.so.0.8000.4, libgmodule-2.0.so.0.8000.4,
libgobject-2.0.so.0.8000.4, libgthread-2.0.so.0.8000.4,
libstdc++.so.6.0.33, libunwind.so.8.1.0.
Removed: libboost_*.so.1.84.0
The addition of libgpg-error to this package should work around the issue
upgrading from 15.0 to -current using slackpkg. Thanks to Stuart Winter.
d/llvm-18.1.8-x86_64-2.txz: Rebuilt.
Add WebAssembly target. Thanks to Heinz Wiesinger.
Adjust compiler flags to what will likely be our new standard.
Qt6 requires newer opcodes than -march=i586, and enough things have begun
to include SSE2 instructions (without providing configure flags to opt-out)
that trying to retain compatibility with CPUs from the 1990s just isn't
going to work any more. My apologies if this causes your antique computer
to get illegal instruction errors, but the solution will have to be sourcing
an antique operating system for it.
On 64-bit we will make the compiler flags for -march and -mtune explicit.
l/libnl3-3.10.0-x86_64-1.txz: Upgraded.
l/orc-0.4.39-x86_64-1.txz: Upgraded.
x/egl-wayland-1.1.14-x86_64-1.txz: Upgraded.
2024-07-19 22:08:29 +02:00
|
|
|
# Support GCC built for i?86-slackware-linux:
|
|
|
|
zcat $CWD/clang.toolchains.32-bit.triple.diff.gz | patch -p2 --verbose || exit 1
|
2022-06-28 21:16:08 +02:00
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
chown -R root:root .
|
2016-06-30 22:26:57 +02:00
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 755 {} \+ -o \
|
2016-06-30 22:26:57 +02:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 644 {} \+
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2019-09-30 23:08:32 +02:00
|
|
|
cmake -GNinja \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DCMAKE_C_COMPILER="clang" \
|
|
|
|
-DCMAKE_CXX_COMPILER="clang++" \
|
|
|
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=${LIBDIRSUFFIX} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2024-06-21 02:44:39 +02:00
|
|
|
-DLLVM_BUILD_LLVM_DYLIB=ON \
|
|
|
|
-DLLVM_LINK_LLVM_DYLIB=ON \
|
|
|
|
-DCLANG_LINK_CLANG_DYLIB=ON \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DLLVM_USE_LINKER=lld \
|
2024-06-21 02:44:39 +02:00
|
|
|
-DLLVM_ENABLE_PROJECTS="$LLVM_ENABLE_PROJECTS" \
|
|
|
|
-DLLVM_ENABLE_RUNTIMES="$LLVM_ENABLE_RUNTIMES" \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DLLVM_ENABLE_RTTI=ON \
|
|
|
|
-DLLVM_ENABLE_FFI=ON \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DLLVM_ENABLE_ZLIB=ON \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DLLVM_ENABLE_ASSERTIONS=OFF \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=NO \
|
2019-05-04 03:29:20 +02:00
|
|
|
-DLLVM_INSTALL_UTILS=ON \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DLLVM_BINUTILS_INCDIR=/usr/include \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DCLANG_RESOURCE_DIR="../lib${LIBDIRSUFFIX}/clang/$(echo $VERSION | cut -f 1 -d .)" \
|
Fri Jul 19 20:08:29 UTC 2024
a/aaa_libraries-15.1-x86_64-32.txz: Rebuilt.
Added: libgpg-error.so.0.37.0.
Upgraded: libcap.so.2.70, liblzma.so.5.6.2, libpcre2-8.so.0.13.0,
libglib-2.0.so.0.8000.4, libgmodule-2.0.so.0.8000.4,
libgobject-2.0.so.0.8000.4, libgthread-2.0.so.0.8000.4,
libstdc++.so.6.0.33, libunwind.so.8.1.0.
Removed: libboost_*.so.1.84.0
The addition of libgpg-error to this package should work around the issue
upgrading from 15.0 to -current using slackpkg. Thanks to Stuart Winter.
d/llvm-18.1.8-x86_64-2.txz: Rebuilt.
Add WebAssembly target. Thanks to Heinz Wiesinger.
Adjust compiler flags to what will likely be our new standard.
Qt6 requires newer opcodes than -march=i586, and enough things have begun
to include SSE2 instructions (without providing configure flags to opt-out)
that trying to retain compatibility with CPUs from the 1990s just isn't
going to work any more. My apologies if this causes your antique computer
to get illegal instruction errors, but the solution will have to be sourcing
an antique operating system for it.
On 64-bit we will make the compiler flags for -march and -mtune explicit.
l/libnl3-3.10.0-x86_64-1.txz: Upgraded.
l/orc-0.4.39-x86_64-1.txz: Upgraded.
x/egl-wayland-1.1.14-x86_64-1.txz: Upgraded.
2024-07-19 22:08:29 +02:00
|
|
|
-DLLVM_TARGETS_TO_BUILD="host;AMDGPU;BPF;WebAssembly" \
|
2022-06-28 21:16:08 +02:00
|
|
|
-DLLVM_INCLUDE_BENCHMARKS=OFF \
|
|
|
|
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DCLANG_DEFAULT_PIE_ON_LINUX=ON \
|
2024-06-21 02:44:39 +02:00
|
|
|
-DLIBCXX_LIBDIR_SUFFIX=${LIBDIRSUFFIX} \
|
|
|
|
-DLIBCXXABI_LIBDIR_SUFFIX=${LIBDIRSUFFIX} \
|
|
|
|
-DLIBCXX_INCLUDE_BENCHMARKS=OFF \
|
2023-03-31 20:01:09 +02:00
|
|
|
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=ON \
|
2024-03-07 21:40:08 +01:00
|
|
|
-DLIBCXXABI_USE_LLVM_UNWINDER=OFF \
|
2024-06-21 02:44:39 +02:00
|
|
|
../llvm || exit 1
|
2019-09-30 23:08:32 +02:00
|
|
|
"${NINJA:=ninja}" $NUMJOBS || exit 1
|
|
|
|
DESTDIR=$PKG "$NINJA" install || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
cd ..
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2013-11-04 18:08:47 +01:00
|
|
|
# Add symlinks for $ARCH-slackware-linux-{clang,clang++}:
|
|
|
|
( cd $PKG/usr/bin
|
|
|
|
ln -sf clang $ARCH-slackware-linux-clang
|
|
|
|
ln -sf clang++ $ARCH-slackware-linux-clang++
|
|
|
|
)
|
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Install clang-static-analyzer:
|
2013-11-04 18:08:47 +01:00
|
|
|
for i in ccc c++; do
|
2016-06-30 22:26:57 +02:00
|
|
|
ln -s /usr/libexec/$i-analyzer \
|
2013-11-04 18:08:47 +01:00
|
|
|
$PKG/usr/bin/$i-analyzer || exit 1
|
|
|
|
done
|
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Ensure lit-cpuid is installed:
|
|
|
|
if [ ! -r $PKG/usr/bin/lit-cpuid ]; then
|
|
|
|
cp -a build/bin/lit-cpuid $PKG/usr/bin/lit-cpuid
|
|
|
|
chown root:root $PKG/usr/bin/lit-cpuid
|
|
|
|
chmod 755 $PKG/usr/bin/lit-cpuid
|
|
|
|
fi
|
2023-03-31 20:01:09 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Remove symlink to libgomp, which is already provided by gcc:
|
2018-05-28 21:12:29 +02:00
|
|
|
rm -f $PKG/usr/lib$LIBDIRSUFFIX/libgomp.so
|
2016-06-30 22:26:57 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Install Python bindings:
|
2024-03-20 22:10:30 +01:00
|
|
|
for pyver in ${PY3}; do
|
2018-09-06 08:15:46 +02:00
|
|
|
mkdir -p "$PKG/usr/lib$LIBDIRSUFFIX/python$pyver/site-packages"
|
2024-06-21 02:44:39 +02:00
|
|
|
cp -a clang/bindings/python/clang "$PKG/usr/lib$LIBDIRSUFFIX/python$pyver/site-packages/"
|
2018-09-06 08:15:46 +02:00
|
|
|
done
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Remove bundled python-six:
|
2024-03-20 22:10:30 +01:00
|
|
|
rm -f "$PKG/usr/lib$LIBDIRSUFFIX/python2*/site-packages/six.py"
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Compile Python scripts:
|
2019-02-21 00:59:17 +01:00
|
|
|
python3 -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY3}/site-packages/clang"
|
|
|
|
python3 -O -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY3}/site-packages/clang"
|
2024-03-07 21:40:08 +01:00
|
|
|
python3 -m compileall "$PKG/usr/share/scan-view"
|
|
|
|
python3 -O -m compileall "$PKG/usr/share/scan-view"
|
|
|
|
python3 -m compileall "$PKG/usr/share/clang"
|
|
|
|
python3 -O -m compileall "$PKG/usr/share/clang"
|
|
|
|
python3 -m compileall "$PKG/usr/share/opt-viewer"
|
|
|
|
python3 -O -m compileall "$PKG/usr/share/opt-viewer"
|
|
|
|
|
|
|
|
# Nevermind, we're not shipping this python2 crap:
|
2024-03-20 22:10:30 +01:00
|
|
|
rm -rf $PKG/usr/lib$LIBDIRSUFFIX/python2*
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
# Move man page directory:
|
|
|
|
mv $PKG/usr/share/man $PKG/usr/
|
2013-11-04 18:08:47 +01:00
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
# Strip binaries:
|
|
|
|
( cd $PKG
|
|
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
)
|
|
|
|
|
|
|
|
# Compress manual pages:
|
2019-09-30 23:08:32 +02:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \+
|
2012-09-26 03:10:42 +02:00
|
|
|
for i in $( find $PKG/usr/man -type l ) ; do
|
|
|
|
ln -s $( readlink $i ).gz $i.gz
|
|
|
|
rm $i
|
|
|
|
done
|
|
|
|
|
2024-06-21 02:44:39 +02:00
|
|
|
# Just copy anything top or next level that looks like it might be docs.
|
|
|
|
# Maybe we'll include it someday. ;-)
|
|
|
|
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION
|
|
|
|
cp -a *.{txt,md,TXT,rst} $PKG/usr/doc/$PKGNAM-$VERSION
|
|
|
|
cp -a --parents */*.{txt,md,TXT,rst} $PKG/usr/doc/$PKGNAM-$VERSION
|
|
|
|
cp -a --parents */README* $PKG/usr/doc/$PKGNAM-$VERSION
|
|
|
|
find $PKG/usr/doc/$PKGNAM-$VERSION -name CMakeLists.txt -exec rm -f "{}" \;
|
|
|
|
rmdir $PKG/usr/doc/$PKGNAM-$VERSION/* 2> /dev/null
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2024-10-03 20:32:43 +02:00
|
|
|
/sbin/makepkg -l y -c n --remove-rpaths $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
|