mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 23:02:54 +01:00
Automated: initialized with version 308-1
This commit is contained in:
commit
11a23164c7
2 changed files with 62 additions and 0 deletions
23
.SRCINFO
Normal file
23
.SRCINFO
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
pkgbase = cpyrit-cuda-svn
|
||||
pkgdesc = CUDA 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 = cuda
|
||||
makedepends = svn
|
||||
depends = pyrit-svn
|
||||
depends = nvidia-utils
|
||||
depends = python2
|
||||
provides = cpyrit-cuda
|
||||
conflicts = cpyrit-calpp-svn
|
||||
conflicts = cpyrit-calpp
|
||||
conflicts = cpyrit-cuda
|
||||
conflicts = cpyrit-opencl
|
||||
source = svn+http://pyrit.googlecode.com/svn/trunk/cpyrit_cuda
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = cpyrit-cuda-svn
|
||||
|
||||
39
PKGBUILD
Normal file
39
PKGBUILD
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# 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-cuda-svn
|
||||
pkgver=308
|
||||
pkgrel=1
|
||||
pkgdesc="CUDA 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' 'nvidia-utils' 'python2')
|
||||
makedepends=('cuda' 'svn')
|
||||
conflicts=('cpyrit-calpp-svn' 'cpyrit-calpp' 'cpyrit-cuda' 'cpyrit-opencl')
|
||||
provides=('cpyrit-cuda')
|
||||
|
||||
source=("svn+http://pyrit.googlecode.com/svn/trunk/cpyrit_cuda")
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd cpyrit_cuda
|
||||
|
||||
svnversion
|
||||
}
|
||||
|
||||
build() {
|
||||
cd cpyrit_cuda
|
||||
|
||||
sed "s|' --host-compilation C'||" -i setup.py
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd cpyrit_cuda
|
||||
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue