blob: 1c878d8afc6dfd88e21703baed9b93583e33a2ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: Jeff Cuevas-Koch <jeff at [lastname-no-dashes] dot com>
pkgname=gogitver-bin
pkgver=0.8.1
pkgrel=1
pkgdesc="gogitver: semantic versioning through git history"
arch=('x86_64')
url="https://github.com/annymsMthd/gogitver"
license=('MIT')
depends=('glibc')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/annymsMthd/gogitver/releases/download/${pkgver}/linux.tar.gz")
md5sums=('6afad3e0fa1fdbc48c586860505200f4')
package() {
install -Dm755 $srcdir/gogitver $pkgdir/usr/bin/gogitver
}
|