summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 41b6b613523beb4f079800e6527d6e0050bb1e99 (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
30
31
# Maintainer: German Lashevich <german.lashevich@gmail.com>
#
# Source: https://github.com/zebradil/aur
pkgname=docoseco
pkgver=1.0.0
pkgrel=1
pkgdesc="Automatize management of docker confgs and secrets"
url="https://github.com/Zebradil/docoseco"
arch=(any)
license=(MIT)
groups=()
backup=()
depends=(python3 python-ruamel-yaml)
makedepends=(python-build python-installer python-wheel)
checkdepends=()
optdepends=()
conflicts=()
provides=(docoseco)
replaces=()
source=(https://files.pythonhosted.org/packages/source/d/docoseco/docoseco-1.0.0.tar.gz)
sha256sums=()
build () 
{ 
    cd "$pkgname-$pkgver" || exit 1;
    python -m build --wheel --no-isolation
}
package () 
{ 
    cd "$pkgname-$pkgver" || exit 1;
    python -m installer --destdir="$pkgdir" dist/*.whl
}