-
-
Save wilbowma/3375132 to your computer and use it in GitHub Desktop.
AUR - chromedriver
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: grimsock <lord.grimsock at gmail dot com> | |
pkgname=chromedriver | |
pkgver=21.0.1180.4 | |
pkgrel=1 | |
pkgdesc="ChromeDriver is a standalone server which implements WebDriver's wire protocol" | |
arch=('i686' 'x86_64') | |
url="http://code.google.com/p/selenium/wiki/ChromeDriver" | |
license=('Apache') | |
depends=('chromium>=12.0.712.0' 'libpng12') | |
if [ "$CARCH" = "i686" ]; then | |
_arch='linux32' | |
md5sums=('22ed9621d804ba7c1687f03826a6dc24') | |
elif [ "$CARCH" = "x86_64" ]; then | |
_arch='linux64' | |
md5sums=('bd323d670fe013fdebe0a8cc01def34c') | |
fi | |
source=("http://chromedriver.googlecode.com/files/${pkgname}_${_arch}_${pkgver}.zip") | |
build() { | |
install -D -m 755 "$srcdir/$pkgname" "$pkgdir/usr/bin/$pkgname" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment