summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 98c268fbe49ef17804792eaa28bf0459bece90a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Mantas Mikulėnas <grawity@gmail.com>
pkgname=rdpsign
pkgver=r7.g89cd08646ea5
pkgrel=1
pkgdesc="Remote Desktop Protocol (.rdp) file signing"
arch=(any)
url=https://github.com/nfedera/rdpsign
license=(Apache)
depends=(openssl)
source=("git+https://github.com/nfedera/rdpsign")
sha256sums=('SKIP')

pkgver() {
	cd $pkgname
	echo r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)
}

package() {
	cd $pkgname
	install -D -m 0755 rdpsign.py "$pkgdir"/usr/bin/rdpsign
}