diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-05-16 00:13:48 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-05-16 00:28:15 -0300 |
commit | 3b9de5318d622ea0e0024bc62e15faaaf5c11542 (patch) | |
tree | ca92c66ce83abc8813c4c2886eecf8305b23131f /libre/netsurf-libre/PKGBUILD | |
parent | 1396825900b1801ee18bf3037336cc64e97ac7b7 (diff) |
add parentheses on provides, conflicts and replaces arrays to avoid get eval'd out of order
Diffstat (limited to 'libre/netsurf-libre/PKGBUILD')
-rw-r--r-- | libre/netsurf-libre/PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libre/netsurf-libre/PKGBUILD b/libre/netsurf-libre/PKGBUILD index 906b9e7d5..78bd1d208 100644 --- a/libre/netsurf-libre/PKGBUILD +++ b/libre/netsurf-libre/PKGBUILD @@ -13,9 +13,9 @@ pkgdesc='Lightweight and fast web browser, without non-privacy search providers' arch=('x86_64' 'i686' 'mips64el') url='http://www.netsurf-browser.org/' license=('MIT' 'GPL2') -replaces=$_pkgname -conflicts=$_pkgname -provides=$_pkgname=$pkgver +replaces=($_pkgname) +conflicts=($_pkgname) +provides=($_pkgname=$pkgver) depends=('libmng' 'librsvg' 'libwebp' 'curl' 'lcms' 'desktop-file-utils' 'libnsbmp>=0.1.1' 'libnsgif>=0.1.1' 'libcss>=0.3.0' 'libdom>=0.1.0' 'js185' 'gtk2') # gtk3 makedepends=('js185' 're2c' 'gendesk' 'netsurf-buildsystem' 'perl-html-parser' 'nsgenbind' 'inetutils') install="$_pkgname.install" |