diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-01 11:08:57 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-01 11:08:57 -0300 |
commit | 1200fd46a32625f2ac4b035653cb49c22cce6426 (patch) | |
tree | 0723ee124b40e6e95200ca002f9ae81361ab7919 /community/netsurf/PKGBUILD | |
parent | 0d0d9e0930114504c15aa8174e2c7d1d2b7a6744 (diff) | |
parent | fd115d7057eb8243df6edfaf1ed440d6f3e70692 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/iat/PKGBUILD
community/libnsbmp/PKGBUILD
community/libnsgif/PKGBUILD
community/libopenraw/PKGBUILD
community/netsurf/PKGBUILD
core/bison/PKGBUILD
core/perl/PKGBUILD
extra/avahi/PKGBUILD
extra/mutt/PKGBUILD
extra/php/PKGBUILD
Diffstat (limited to 'community/netsurf/PKGBUILD')
-rw-r--r-- | community/netsurf/PKGBUILD | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/community/netsurf/PKGBUILD b/community/netsurf/PKGBUILD index 367a4e688..e4b0104e9 100644 --- a/community/netsurf/PKGBUILD +++ b/community/netsurf/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 58607 2011-11-16 15:29:25Z spupykin $ +# $Id: PKGBUILD 59684 2011-11-29 11:46:42Z 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=1 -pkgdesc="Lightweight, fast web browser" +pkgrel=2 +pkgdesc="Lightweight and fast web browser" arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/" license=('GPL') @@ -14,32 +14,30 @@ depends=('libmng' 'curl' 'libglade' 'librsvg' 'desktop-file-utils' 'libnsbmp' 'l makedepends=('re2c' 'lcms') provides=('netsurf') conflicts=('netsurf') -install="${pkgname}.install" -source=("${pkgname}.desktop" - "${pkgname}.install" - "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") -md5sums=('85e0af265e77607596fd90db9ac707ad' - '69445d7ccf7df8c7ff134f04f36342b0' - '4f28912e5df4b826b819e175265bcc9c' - '49c41f281f3e9ca28a24da505fad2e3a') +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") +md5sums=('4f28912e5df4b826b819e175265bcc9c' + '49c41f281f3e9ca28a24da505fad2e3a' + '85e0af265e77607596fd90db9ac707ad') build() { - cd "${srcdir}/${pkgname}" + cd "$srcdir/$pkgname" make PREFIX=/usr TARGET=gtk } package() { - cd "${srcdir}/${pkgname}" + cd "$srcdir/$pkgname" - make install PREFIX=/usr DESTDIR="${pkgdir}" - install -Dm644 "../icon_48x48_netsurf.png" \ - "${pkgdir}/usr/share/pixmaps/${pkgname}.png" - install -Dm644 "../${pkgname}.desktop" \ - "${pkgdir}/usr/share/applications/${pkgname}.desktop" + make install PREFIX=/usr DESTDIR="$pkgdir" + install -Dm644 "../$pkgname.png" \ + "$pkgdir/usr/share/pixmaps/$pkgname.png" + install -Dm644 "../$pkgname.desktop" \ + "$pkgdir/usr/share/applications/$pkgname.desktop" install -Dm644 COPYING \ - "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" + "$pkgdir/usr/share/licenses/$pkgname/COPYING" } # vim:set ts=2 sw=2 et: |