blob: 9a90c3811e30fe51a9c094e5ec9fef3c201de7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Gavin Lloyd <gavinhungry@gmail.com>
pkgname=hashbrowns-git
pkgver=0.20.181cfea
pkgrel=1
pkgdesc='Provides cryptographic hashes with a minimal UI'
url='https://github.com/gavinhungry/hashbrowns'
license=('MIT')
arch=('any')
makedepends=('git')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
echo 0.$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
package() {
cd "${srcdir}/${pkgname}"
mkdir -p "$pkgdir"/usr/bin
install -m 755 hashbrowns.py "$pkgdir"/usr/bin/hashbrowns
}
|