blob: 717dc4d7433ac6e11808af6549a623a25ff58f12 (
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
26
27
28
29
|
# Maintainer: Charles Leclerc <charles@la-mouette.net>
_collection_namespace=community
_collection_name=general
_repo_name="${_collection_namespace}.${_collection_name}"
_github_url="https://github.com/ansible-collections/${_repo_name}"
pkgname="ansible-collection-${_collection_namespace}-${_collection_name}"
pkgver=9.3.0
pkgrel=1
pkgdesc="Ansible Galaxy Community General Collection"
arch=("any")
url="https://github.com/ansible-collections/${_collection_namespace}.${_collection_name}"
license=("GPL3")
depends=("ansible-core")
source=("${_github_url}/archive/${pkgver}/${_repo_name}-${pkgver}.tar.gz")
sha256sums=('ef3123137f8c95d54d11c9e0373dc8be4f503df60c50f7b5164cd6eb5314b51e')
build() {
cd "${_repo_name}-${pkgver}"
ansible-galaxy collection build
}
package() {
cd "${_repo_name}-${pkgver}"
ansible-galaxy collection install -n -p \
"${pkgdir}/usr/share/ansible/collections" \
"${_collection_namespace}-${_collection_name}-${pkgver}.tar.gz"
}
|