2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/falkon/build
2020-01-27 22:04:48 +02:00

27 lines
538 B
Bash
Executable File

#!/bin/sh -e
export DESTDIR="$1"
for patch in *.patch; do
patch -p1 < "$patch"
done
# Get rid of i18n.
rm -rf po poqm
# Fix missing include in latest Qt.
sed -i 's/\(Settings>\)/\1\n#include <QFile>/' \
src/plugins/VerticalTabs/verticaltabsplugin.cpp
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF \
-DDISABLE_DBUS=ON
cmake --build build
cmake --install build
install -Dm755 falkon-privacy "$1/usr/bin/falkon-privacy"