summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 71b9d9f5ce80e5f80ad8849e06b97b66c548b870 (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
25
# Maintainer: willemw <willemw12@gmail.com>
# Contributor: pancho horrillo <pancho at pancho dot name>

pkgname=ansible-aur-git
pkgver=0.11.1.r0.gfe05001
pkgrel=1
pkgdesc='Ansible module to manage packages from the AUR'
arch=(any)
url=https://github.com/kewlfft/ansible-aur
license=(GPL-3.0-or-later)
depends=(ansible-core)
makedepends=(git)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url.git")
sha256sums=('SKIP')

pkgver() {
  git -C $pkgname describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
  install -Dm644 $pkgname/README.md "$pkgdir/usr/share/doc/${pkgname%-git}/README.md"
  install -Dm644 $pkgname/plugins/modules/aur.py -t "$pkgdir/usr/share/ansible/plugins/modules"
}