diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-06-18 22:44:44 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-18 20:14:18 -0300 |
commit | 362364c3aad057873a9463c9117f53c6c31bf1d3 (patch) | |
tree | 612dcb0c8a8f1134f008e9d13a282d4db5850f1d /testing/dolphin | |
parent | 9f783a65fe1b326023a1a51c31f39718fc047b3d (diff) | |
download | aports-362364c3aad057873a9463c9117f53c6c31bf1d3.tar.bz2 aports-362364c3aad057873a9463c9117f53c6c31bf1d3.tar.xz |
testing/dolphin: new aport
Diffstat (limited to 'testing/dolphin')
-rw-r--r-- | testing/dolphin/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/dolphin/APKBUILD b/testing/dolphin/APKBUILD new file mode 100644 index 0000000000..052dacbcd8 --- /dev/null +++ b/testing/dolphin/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=dolphin +pkgver=19.04.2 +pkgrel=0 +arch="all" +url="https://kde.org/applications/system/dolphin" +pkgdesc="KDE File Manager" +license="GPL-2.0-only" +makedepends="extra-cmake-modules qt5-qtbase-dev kdoctools-dev kinit-dev + kcmutils-dev knewstuff-dev kcoreaddons-dev ki18n-dev kdbusaddons-dev + kbookmarks-dev kconfig-dev kio-dev kparts-dev solid-dev kiconthemes-dev + kcompletion-dev ktextwidgets-dev knotifications-dev kcrash-dev + kwindowsystem-dev phonon-dev baloo-dev baloo-widgets-dev kfilemetadata-dev + kactivities-dev" +checkdepends="xvfb-run" +source="https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz" +subpackages="$pkgname-doc $pkgname-lang" + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib + make +} + +check() { + # kfileitemmodeltest and placesitemmodeltest are broken + CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest -E "(kfileitemmodel|placesitemmodel)test" +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="e1480c2f98f06a29048683180e1ab30992e57a4cefde1b3a1a0da1c1c654482cc2e57d23fb7a7b8102e76f86c2b09b09900d37dbddc753c85f545146d47c5574 dolphin-19.04.2.tar.xz" |