summaryrefslogtreecommitdiff
path: root/libre/midori-libre/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libre/midori-libre/PKGBUILD')
-rw-r--r--libre/midori-libre/PKGBUILD66
1 files changed, 0 insertions, 66 deletions
diff --git a/libre/midori-libre/PKGBUILD b/libre/midori-libre/PKGBUILD
deleted file mode 100644
index c0cd14422..000000000
--- a/libre/midori-libre/PKGBUILD
+++ /dev/null
@@ -1,66 +0,0 @@
-# $Id: PKGBUILD 101597 2013-11-28 20:54:40Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
-# Contributor: Andreas Radke <andyrtr@archlinux.org>
-# Contributor: rabyte <rabyte.at.gmail.dot.com>
-# Contributor: Johannes Krampf <wuischke.at.amule.dot.org>
-# Contributor: Bartłomiej Piotrowski <barthalion@gmail.com>
-# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>
-
-_pkgname=midori
-pkgname=midori-libre
-pkgver=0.5.6
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK2), without non-privacy search providers'
-arch=('x86_64' 'i686' 'mips64el')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-replaces=$_pkgname
-conflicts=$_pkgname
-provides=$_pkgname=$pkgver
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
- 'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
- 'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
- 'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${_pkgname}_${pkgver}_all_.tar.bz2")
-sha256sums=('c5be1b5d9933776f09c5cab7945a073a820d65555e51fda9ff55fd063843f24a')
-
-prepare() {
- cd "$_pkgname-$pkgver"
-
- # remove non-privacy search providers
- sed -i 's|Duck Duck Go|DuckDuckGo HTML|
- s|duckduckgo[.]com|duckduckgo.com/html|
- \|Yahoo|d
- \|name=Yahoo|d
- \|text=Yahoo Web Search|d
- \|uri=http://search[.]yahoo[.]com/search?p=|d
- \|token=y|d
- \|Google|d
- \|name=Google|d
- \|text=Web Search|d
- \|uri=http://www[.]google[.]com/search?q=%s|d
- \|token=g|d
- \|Localize text or URL|d
- \|translate[.]google[.]com/?q=|d
- ' config/search
-}
-
-build() {
- cd "$_pkgname-$pkgver"
-
- mkdir -p build
- cd build
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
- make
-}
-
-package() {
- make -C "$_pkgname-$pkgver/build" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et: