5267dd0301
All packages are now built as RelWithDebugInfo rather than Release. This should make debugging these packages easier. I've also updated all Plasma packages without releases (git-based) to their latest masters. plasma-angelfish now has it's first release, and a new dependency called "purpose". Calindori had a typo in the pkgver causing it to look like it was released in the 30th month of the year. Because of this, the old package will have to explicitly be removed from the repository. Let's hope no one uses that package yet, or they will have to wait till 2020 before it'll get updated again on their system lol. [skip ci]: it does not finish in time. ollieparanoid made sure that it builds on all arches. Usually we would use [ci:skip-build] instead of [skip-ci], but now that [ci:skip-build] also verifies that downloading sources is working as expected, and for some reason gitlab CI can't download one source file even when retrying [1] (cache on their end?), let's skip it this time. [1] https://gitlab.com/postmarketOS/pmaports/-/jobs/219539514
44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
# Contributor: George Hopkins <george-hopkins@null.net>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=falkon
|
|
pkgver=3.0.1
|
|
pkgrel=2
|
|
pkgdesc="Cross-platform web browser using QtWebEngine rendering engine"
|
|
url="https://www.falkon.org/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
depends="qt5-qtbase-sqlite"
|
|
makedepends="cmake extra-cmake-modules qt5-qtdeclarative-dev qt5-qtwebengine-dev qt5-qtx11extras-dev qt5-qttools-dev xcb-util-dev ki18n-dev ttf-freefont"
|
|
source="https://download.kde.org/stable/falkon/$pkgver/$pkgname-$pkgver.tar.xz
|
|
disable-ld-fatal-warnings.patch
|
|
disable-backtraces.patch"
|
|
options="!check" # Requires X11
|
|
|
|
prepare() {
|
|
mkdir "$builddir"/build
|
|
|
|
default_prepare
|
|
}
|
|
|
|
build () {
|
|
cd "$builddir"/build
|
|
cmake .. \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebugInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"/build
|
|
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="e2384cb49d4e1ec52ff7804cf798688be2d80fa5957c72accb09376aa0c41ee491c45234fd53c79871bc474a8d0677e40ddb48241a70d77102c67406b0719191 falkon-3.0.1.tar.xz
|
|
fa3df8f056198c6120b4da8fc4b62b08ac9ab5f2c97e76a45eca8db1a41a03b64696681fe35b939cf2f8472f6bb8844d3baac8c5f979d0bf99b9a329259f50e4 disable-ld-fatal-warnings.patch
|
|
0fb09a9219ecbc6ee5c0f7e3721c33b186f6040be254f72f1901cab047d37402edd881ab42448ad4aeda2d1286c963c33a720b2ed47f321c55755ecdf12f0ec4 disable-backtraces.patch"
|