mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 14:33:23 +01:00
Automated: initialized with version 308-1
This commit is contained in:
commit
f5176c2d90
2 changed files with 71 additions and 0 deletions
24
.SRCINFO
Normal file
24
.SRCINFO
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
pkgbase = cpyrit-opencl-svn
|
||||
pkgdesc = OpenCL backend for accelerated attack against WPA-PSK authentication. (SVN version)
|
||||
pkgver = 308
|
||||
pkgrel = 1
|
||||
url = http://code.google.com/p/pyrit/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
makedepends = opencl-headers
|
||||
makedepends = svn
|
||||
depends = pyrit-svn
|
||||
depends = python2
|
||||
optdepends = opencl-nvidia: OpenCL implemention for NVIDIA
|
||||
optdepends = opencl-catalyst: OpenCL implemention from AMD
|
||||
provides = cpyrit-opencl
|
||||
conflicts = cpyrit-calpp-svn
|
||||
conflicts = cpyrit-calpp
|
||||
conflicts = cpyrit-opencl
|
||||
conflicts = cpyrit-cuda
|
||||
source = svn+http://pyrit.googlecode.com/svn/trunk/cpyrit_opencl
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = cpyrit-opencl-svn
|
||||
|
||||
47
PKGBUILD
Normal file
47
PKGBUILD
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Maintainer: Ivan Shapovalov <intelfx100@gmail.com>
|
||||
# Contributor: Gustavo Alvarez <sl1pkn07@gmail.com>
|
||||
# Contributor: Hoàng Đức Hiếu <hdh@lazny.tang.la>
|
||||
# Contributor: Gilfran Ribeiro <contato [at] gilfran [dot] net>
|
||||
# Contributor: William Díaz <wdiaz [at] archlinux [dot] us>
|
||||
|
||||
pkgname=cpyrit-opencl-svn
|
||||
pkgver=308
|
||||
pkgrel=1
|
||||
pkgdesc="OpenCL backend for accelerated attack against WPA-PSK authentication. (SVN version)"
|
||||
url="http://code.google.com/p/pyrit/"
|
||||
license=('GPL3')
|
||||
arch=('i686' 'x86_64')
|
||||
depends=('pyrit-svn' 'python2')
|
||||
makedepends=('opencl-headers' 'svn')
|
||||
optdepends=('opencl-nvidia: OpenCL implemention for NVIDIA'
|
||||
'opencl-catalyst: OpenCL implemention from AMD')
|
||||
conflicts=('cpyrit-calpp-svn' 'cpyrit-calpp' 'cpyrit-opencl' 'cpyrit-cuda')
|
||||
provides=('cpyrit-opencl')
|
||||
|
||||
source=("svn+http://pyrit.googlecode.com/svn/trunk/cpyrit_opencl")
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd cpyrit_opencl
|
||||
|
||||
svnversion
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd cpyrit_opencl
|
||||
|
||||
# fix path headers
|
||||
sed -i 's|/usr/local/opencl/OpenCL/common/inc|/usr/include/CL|g' setup.py
|
||||
}
|
||||
|
||||
build() {
|
||||
cd cpyrit_opencl
|
||||
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd cpyrit_opencl
|
||||
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue