Skip to content

Instantly share code, notes, and snippets.

@ThePixelDeveloper
Created January 5, 2012 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ThePixelDeveloper/1565275 to your computer and use it in GitHub Desktop.
Save ThePixelDeveloper/1565275 to your computer and use it in GitHub Desktop.
AUR - chromedriver
# Maintainer: grimsock <lord.grimsock at gmail dot com>
pkgname=chromedriver
pkgver=18.0.995.0
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=('51f94c42d89146d76d953092e98de502')
elif [ "$CARCH" = "x86_64" ]; then
_arch='linux64'
md5sums=('215f2c686abb01048ab4c0363842ee65')
fi
source=("http://chromium.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