0bf985f5e1
This MR updates the app to the latest commit (currently from 2 days ago). It also updates plasma-angelfish, but I changed the $pkgrel to follow the format of the other Git packages. This also re-enables plasma-angelfish and vvave in the default Plasma Mobile installation, as they were previously disabled due to qt5-qtwebengine (which they depend on) requiring a soname bump upstream.
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
# Contributor: Jonah Brüchert <jbb@kaidan.im>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=plasma-angelfish
|
|
pkgver=0_git20190105
|
|
pkgrel=0
|
|
_commit="bad30c68046d37c34f6b40df677212c9b71e6164"
|
|
pkgdesc="Small Webbrowser for Plasma Mobile"
|
|
url="https://phabricator.kde.org/source/plasma-angelfish/"
|
|
arch="all"
|
|
license="GPL-3.0"
|
|
depends="kirigami2 plasma-framework"
|
|
makedepends="cmake qt5-qtwebengine-dev kdeclarative-dev kirigami2-dev plasma-framework-dev kio-dev ki18n-dev extra-cmake-modules"
|
|
source="$pkgname-$_commit.tar.gz::https://invent.kde.org/jbbgameich/$pkgname/-/archive/$_commit.tar.gz"
|
|
builddir="$srcdir/$pkgname-$_commit/build"
|
|
|
|
prepare() {
|
|
mkdir "$builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
if [ "$CBUILD" != "$CHOST" ]; then
|
|
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
|
|
fi
|
|
cmake "$builddir"/.. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DBUILD_SHARED_LIBS=True \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
|
|
-DCMAKE_C_FLAGS="$CFLAGS" \
|
|
${CMAKE_CROSSOPTS}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="99df4a4f5cd0307ce3a4409f5ff91a10dfd96dfbdf6453336caec48b593454263182049abb4b010741080e4b07f96010f65aa3874fc641f3ddad883c5941183d plasma-angelfish-bad30c68046d37c34f6b40df677212c9b71e6164.tar.gz"
|