summaryrefslogtreecommitdiff
path: root/libre/epiphany-libre/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-05 07:13:12 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-05 07:13:12 -0300
commit9072f82eb6055f81082b784666b66da380480949 (patch)
tree2660ee06b786e0e8604ca4a544ba9d2bfc74df95 /libre/epiphany-libre/PKGBUILD
parentc55e1348b6f415284260836795c462fe81ea3809 (diff)
epiphany: remove libre suffix and add complex pkgrel
Diffstat (limited to 'libre/epiphany-libre/PKGBUILD')
-rw-r--r--libre/epiphany-libre/PKGBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/libre/epiphany-libre/PKGBUILD b/libre/epiphany-libre/PKGBUILD
deleted file mode 100644
index 114d396a1..000000000
--- a/libre/epiphany-libre/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# $Id: PKGBUILD 219317 2014-08-05 09:33:27Z jgc $
-# Maintainer (Arch): Jan de Groot <jgc@archlinux.org>
-# Maintainer: André Silva <emulatorman@parabola.nu>
-# Contributor: Márcio Silva <coadde@parabola.nu>
-
-_pkgname=epiphany
-pkgname=epiphany-libre
-pkgver=3.12.1
-pkgrel=2
-install=epiphany.install
-pkgdesc="A GNOME web browser based on the WebKit rendering engine, with DuckDuckGo HTML support"
-arch=('i686' 'x86_64' 'mips64el')
-license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkitgtk' 'nss' 'iso-codes' 'dconf' 'desktop-file-utils' 'gnome-icon-theme-symbolic' 'gcr' 'gnome-desktop' 'libwnck3' 'gnome-themes-standard')
-makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 'gobject-introspection')
-replaces=($_pkgname)
-conflicts=($_pkgname)
-provides=($_pkgname=$pkgver)
-options=('!emptydirs')
-groups=('gnome')
-url="https://wiki.gnome.org/Apps/Web"
-source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/${pkgver:0:4}/$_pkgname-$pkgver.tar.xz
- git-fixes.patch)
-sha256sums=('16d9f8f10443328b2f226c2da545e75c8433f50f103af8aeb692b098d5fbbf93'
- '22b026b30e4792b3244f3fecf12bd48f928efc34097bf501d87611f77c0750bf')
-
-prepare() {
- cd $_pkgname-$pkgver
-
- # Patch up to f43f9af7b195de53011b2e22c91041674dc00e2e
- patch -Np1 -i ../git-fixes.patch
-
- # Replace DuckDuckGo to DuckDuckGo HTML
- sed -i 's|duckduckgo[.]com|duckduckgo.com/html|g' $(grep -rlI 'duckduckgo[.]com')
-
- # Replace Google support to DuckDuckGo HTML
- sed -i 's|http://www[.]google[.]com/search?q=%s[&]ie=UTF-8[&]oe=UTF-8|https://duckduckgo.com/html/?q=search|g' $(grep -rlI 'http://www[.]google[.]com/search?q=%s&ie=UTF-8&oe=UTF-8')
- sed -i '\|a quoted string should be searched|d' $(grep -rlI 'a quoted string should be searched')
- sed -i 's|http://www[.]google[.]com/search?q=%s[&]amp;ie=UTF-8[&]amp;oe=UTF-8|https://duckduckgo.com/html/?q=%s|g' $(grep -rlI 'http://www[.]google[.]com/search')
- sed -i 's|http://www[.]google[.]com|https://duckduckgo.com/html|g' $(grep -rlI 'google[.]com')
- sed -i 's|http://google[.]com|https://duckduckgo.com/html|g' $(grep -rlI 'google[.]com')
- sed -i 's|mail[.]google[.]com|mail.com|g' $(grep -rlI 'mail[.]google[.]com')
- sed -i 's|google[.]com|duckduckgo.com/html|g' $(grep -rlI 'google[.]com')
-}
-
-build() {
- cd $_pkgname-$pkgver
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --libexecdir=/usr/lib/$_pkgname
-
- # https://bugzilla.gnome.org/show_bug.cgi?id=655517
- sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
- make
-}
-
-package() {
- cd $_pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-}