diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-05 15:32:47 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-05 15:32:47 -0300 |
commit | 6beeabbb6fd37b65c36e8b04b2d1cf5079a53ce9 (patch) | |
tree | ee9a5ee6e897fb97eccd79fc0ebdf931ee7b474f /libre/epiphany-libre/PKGBUILD | |
parent | cf4686d9b73ce6a1a1c677f18b56e829d1c01369 (diff) |
epiphany-libre-3.12.1-2: update to git snapshot
Diffstat (limited to 'libre/epiphany-libre/PKGBUILD')
-rw-r--r-- | libre/epiphany-libre/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libre/epiphany-libre/PKGBUILD b/libre/epiphany-libre/PKGBUILD index ffaecc566..114d396a1 100644 --- a/libre/epiphany-libre/PKGBUILD +++ b/libre/epiphany-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 213447 2014-05-23 23:21:00Z heftig $ +# $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> @@ -6,7 +6,7 @@ _pkgname=epiphany pkgname=epiphany-libre pkgver=3.12.1 -pkgrel=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') @@ -19,12 +19,17 @@ 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) -sha256sums=('16d9f8f10443328b2f226c2da545e75c8433f50f103af8aeb692b098d5fbbf93') +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') |