summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2a5270e7f104f6ce3950140d84cd98f5b5a384f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: mark.blakeney at bullet-systems dot net
pkgname=pkglog
pkgver=1.0
pkgrel=1
pkgdesc="Reports log of package updates"
url="https://github.com/bulletmark/$pkgname"
license=("GPL3")
arch=("any")
depends=("python>=3.7")
makedepends=("python-setuptools")
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha1sums=('9b2cadda37354b6fffde307502adb29006560262')

package() {
  cd "$pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: