summaryrefslogtreecommitdiff
path: root/libre/kdebase-runtime-libre/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libre/kdebase-runtime-libre/PKGBUILD')
-rw-r--r--libre/kdebase-runtime-libre/PKGBUILD71
1 files changed, 0 insertions, 71 deletions
diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD
deleted file mode 100644
index 315d4b370..000000000
--- a/libre/kdebase-runtime-libre/PKGBUILD
+++ /dev/null
@@ -1,71 +0,0 @@
-# $Id: PKGBUILD 206697 2014-03-05 07:38:14Z andrea $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Pierre Schmitz <pierre@archlinux.de>
-# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>
-
-_pkgname=kdebase-runtime
-pkgname=kdebase-runtime-libre
-pkgver=4.12.3
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE applications, without non-privacy search providers"
-arch=('i686' 'x86_64' 'mips64el')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-replaces=("${_pkgname}")
-conflicts=("${_pkgname}")
-provides=("${_pkgname}=${pkgver}")
-depends=("kdelibs>=${pkgver}" 'kactivities' 'smbclient' 'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
- 'gdb: needed by DrKonqi to generate backtrace'
- 'htdig: to build the search index in the KHelpCenter'
- 'rarian: needed by KHelpCenter')
-install="${_pkgname}.install"
-source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"
- 'duckduckgo_html.desktop'
- 'duckduckgo_lite.desktop')
-sha1sums=('c2453e7a6a6b5493af7698ed2e871d03a707ad59'
- 'aa6f39f4b0ad3c110fd05cd6c41190afae9773dd'
- 'ac3bac94a2c4b1444642524bc5fb539c4c5dcc5b')
-
-prepare() {
- mkdir build
-}
-
-build() {
- cd "${srcdir}"
-
- # Removing non-privacy search providers
- rm -v kde-runtime-${pkgver}/kurifilter-plugins/ikws/searchproviders/{7digital,acronym,amazon{,_mp3},amg,backports,baidu,bing,blip,cia,dbug,deb,duckduckgo{,_info,_shopping},facebook,ecosia,feedster,flickr,flickrcc,google,google_advanced,google_code,google_groups,google_images,google_lucky,google_maps,google_movie,google_news,imdb,jamendo,jeeves,magnatune,metacrawler,msdn,nl-telephone,nl-teletekst,python,rpmfind,tvtome,uspto,vimeo,voila,yahoo,yahoo_image,yahoo_local,yahoo_shopping,yahoo_video,youtube}.desktop
-
- # Adding DuckDuckGo HTML
- cp -v duckduckgo_html.desktop "kde-runtime-${pkgver}/kurifilter-plugins/ikws/searchproviders"
-
- # Adding DuckDuckGo Lite
- cp -v duckduckgo_lite.desktop "kde-runtime-${pkgver}/kurifilter-plugins/ikws/searchproviders"
-
- cd build
- cmake ../kde-runtime-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DKDE4_BUILD_TESTS=OFF \
- -DCMAKE_SKIP_RPATH=ON \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DWITH_QNtrack=OFF \
- -DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0
- make
-}
-
-package() {
- cd build
- make DESTDIR="$pkgdir" install
-
- rm "${pkgdir}"/usr/share/icons/hicolor/index.theme
-
- ln -sf /usr/lib/kde4/libexec/kdesu "${pkgdir}/usr/bin/"
-
- # FS#36668
- chown :nobody "${pkgdir}"/usr/lib/kde4/libexec/kdesud
- chmod g+s "${pkgdir}"/usr/lib/kde4/libexec/kdesud
-}