PKGBUILDs/extra/kdelibs/PKGBUILD

73 lines
2.5 KiB
Bash
Raw Normal View History

# $Id$
2015-01-24 16:37:51 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch to fix unclickable plasmoid buttons on ARM
pkgname=kdelibs
2017-02-09 13:34:13 +00:00
pkgver=4.14.29
_kdeappver=16.12.2
pkgrel=1
pkgdesc="KDE Core Libraries"
arch=('i686' 'x86_64')
2016-04-23 12:06:53 +00:00
url='https://www.kde.org/'
license=('GPL' 'LGPL' 'FDL')
2016-04-23 12:06:53 +00:00
depends=('attica-qt4' 'libxss' 'qca-qt4' 'libdbusmenu-qt4' 'polkit-qt4'
2016-09-10 15:51:43 +00:00
'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
2013-12-06 15:36:27 +00:00
'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
2017-02-07 13:23:47 +00:00
'media-player-info' 'libutempter' 'icu')
2016-04-23 12:06:53 +00:00
makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'mesa')
2016-04-23 12:22:02 +00:00
source=("http://download.kde.org/stable/applications/${_kdeappver}/src/$pkgname-$pkgver.tar.xz"
2017-02-07 13:23:47 +00:00
'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch' 'kdelibs-no-kdewebkit.patch'
2014-08-21 00:22:30 +00:00
'arm-coronaoffscreen-input-fixes.diff')
2017-02-09 13:34:13 +00:00
sha1sums=('d04e3fe612cef075d2023f6cef1938ff236f19d3'
'86ee8c8660f19de8141ac99cd6943964d97a1ed7'
'63a850ab4196b9d06934f2b4a13acd9f7739bc67'
'ed1f57ee661e5c7440efcaba7e51d2554709701c'
2017-02-07 13:23:47 +00:00
'ee83d517c2d8dbe611e263ef16df87f39531fe72'
2014-08-21 00:22:30 +00:00
'855150096763600c970aa307c8241b96da33b9ed')
2016-07-12 23:35:27 +00:00
prepare() {
2016-05-10 18:17:06 +00:00
mkdir -p build
cd ${pkgname}-${pkgver}
# avoid file conflict with gnome-menus
patch -p1 -i ../kde-applications-menu.patch
# add Archlinux menu entry
patch -p1 -i ../archlinux-menu.patch
# qmake refers to Qt5
patch -p1 -i ../qt4.patch
2017-02-07 13:23:47 +00:00
# disable kdewebkit (Fedora)
patch -p1 -i ../kdelibs-no-kdewebkit.patch
2016-05-10 18:17:06 +00:00
# fix unclickable plasmoid buttons on ARM
patch -p1 -i ../arm-coronaoffscreen-input-fixes.diff
}
build() {
cd build
2015-12-16 13:26:54 +00:00
cmake ../$pkgname-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_SKIP_RPATH=ON \
-DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-DCMAKE_INSTALL_PREFIX=/usr \
-DSYSCONF_INSTALL_DIR=/etc \
2014-10-07 12:34:06 +00:00
-DLOCALE_INSTALL_DIR=/usr/share/locale/kde4 \
-DKDE_DEFAULT_HOME='.kde4' \
-DWITH_FAM=OFF \
-DWITH_SOLID_UDISKS2=ON
make
}
package() {
2015-12-16 13:26:54 +00:00
cd build
make DESTDIR="$pkgdir" install
# cert bundle seems to be hardcoded
# link it to the one from ca-certificates
2015-12-16 13:26:54 +00:00
rm -f "$pkgdir"/usr/share/apps/kssl/ca-bundle.crt
ln -sf /etc/ssl/certs/ca-certificates.crt "$pkgdir"/usr/share/apps/kssl/ca-bundle.crt
}