diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-05-23 13:22:09 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-05-23 13:22:09 -0300 |
commit | 2906c522e750f7e013d7af606f01ad849a7d3876 (patch) | |
tree | d62491c93d6534817db7f9b7d07adf64b9670b48 /community/netsurf | |
parent | 193046ad8ed67a836ffe11e235296e6201e56ce8 (diff) | |
parent | bd614ac21d2754d778a796cd5e92d1568ec8baec (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/mesa/PKGBUILD
extra/nmap/PKGBUILD
extra/openmpi/PKGBUILD
extra/rasqal/PKGBUILD
extra/sqlite/PKGBUILD
extra/totem/PKGBUILD
extra/xorg-server/PKGBUILD
multilib/lib32-e2fsprogs/PKGBUILD
multilib/lib32-libcups/PKGBUILD
multilib/lib32-mesa/PKGBUILD
staging/libreoffice/PKGBUILD
testing/udev/PKGBUILD
testing/udev/initcpio-hooks-udev
testing/udev/initcpio-install-udev
Diffstat (limited to 'community/netsurf')
-rw-r--r-- | community/netsurf/PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/community/netsurf/PKGBUILD b/community/netsurf/PKGBUILD index 8a17408ae..4443c5d8d 100644 --- a/community/netsurf/PKGBUILD +++ b/community/netsurf/PKGBUILD @@ -1,33 +1,35 @@ -# $Id: PKGBUILD 65206 2012-02-20 11:09:55Z arodseth $ +# $Id: PKGBUILD 71025 2012-05-21 22:37:32Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Paulo Matias <matiasΘarchlinux-br·org> # Contributor: Georgij Kondratjev <smpuj@bk.ru> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=netsurf -pkgver=2.8 -pkgrel=4 +pkgver=2.9 +pkgrel=2 pkgdesc="Lightweight and fast web browser" arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/" license=('GPL') -depends=('libmng' 'curl' 'libglade' 'librsvg' 'desktop-file-utils' 'libnsbmp' 'libnsgif' 'hubbub' 'libcss' 'hubbub' 'libwebp') -makedepends=('re2c' 'lcms') +depends=('libmng' 'curl' 'libglade' 'librsvg' 'desktop-file-utils' 'libnsbmp' 'libnsgif' 'libcss>=0.1.2' 'hubbub>=0.1.2' 'libwebp') +makedepends=('re2c' 'lcms' 'gendesk>=0.4.2') provides=('netsurf') conflicts=('netsurf') install=netsurf.install source=("netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-browser/icon_48x48_netsurf.png" - "http://www.netsurf-browser.org/downloads/releases/$pkgname-$pkgver-src.tar.gz" - "$pkgname.desktop") + "http://www.netsurf-browser.org/downloads/releases/$pkgname-$pkgver-src.tar.gz") sha256sums=('f0dbcc5d80bf03d706aa8b28a322aa7f169a40813848c2d1505691f6e2c7ef00' - '09f3aa38f26248a410481aaf125811d6af4c8535725bec950e75af37ccd0aad2' - '5adf656bcd8d247ceb2808d8079cdc59155b8e4cf8569e050bb2730ad9783347') + 'f74767161fd7f3186e483b438a183f2ea3cae160020ad5dd63c75a4d78f5c797') +_exec=('netsurf %U') +_genericname=('Web Browser') +_comment=('Lightweight web browser') +_mimetype=('text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/geo') build() { - cd "$srcdir/$pkgname" + cd "$srcdir" - sed 's:libpng:libpng15:' -i gtk/Makefile.target - sed 's:libpng:libpng15:' -i monkey/Makefile.target + gendesk + cd "$pkgname" make PREFIX=/usr TARGET=gtk NETSURF_USE_WEBP=YES } |