blob: 6248ed13d037e3743533659495149f8e98e13fdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Maintainer: Alex Henrie <alexhenrie24@gmail.com>
pkgname=crackstation
pkgver=2019.05.26
pkgrel=1
pkgdesc="CrackStation's password cracking dictionary"
arch=('any')
url='https://crackstation.net/crackstation-wordlist-password-cracking-dictionary.htm'
license=('CC-BY-SA-3.0')
source=('https://crackstation.net/files/crackstation.txt.gz')
sha256sums=('a6dc17d27d0a34f57c989741acdd485b8aee45a6e9796daf8c9435370dc61612')
package() {
install -Dm644 crackstation.txt "$pkgdir/usr/share/dict/crackstation.txt"
}
|