summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51069663202369c05c2a9b1fe1e647cf11135a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Contributor: Andrew Rabert <ar nullsum.net>

pkgname=cloneholio
pkgver=0.13.4
pkgrel=1
pkgdesc="Maintain local backups of *all Git repositories* belonging to a user or group."
url="https://github.com/nvllsvm/cloneholio"
depends=('python' 'python-arrow' 'python-gitpython' 'python-pygithub' 'python-requests' 'python-tqdm')
makedepends=('python-build' 'python-installer' 'python-pdm-backend')
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('aa1933f230b5cf805cf7338d791d70a06a6a6d57b7a4c1e24357f32ac875dff4')

build() {
    cd $pkgname-$pkgver
    python -m build --wheel --no-isolation
}

package() {
    cd $pkgname-$pkgver
    python -m installer --destdir="$pkgdir" dist/*.whl
}