mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 11:21:17 +02:00
34 lines
997 B
Plaintext
34 lines
997 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=github-cli
|
|
pkgver=1.0.0
|
|
pkgrel=3
|
|
pkgdesc="GitHub issue tracker client"
|
|
url="http://packages.python.org/github-cli/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2 py-simplejson py-setuptools"
|
|
makedepends="py-distutils-extra"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.zip::https://github.com/jsmits/$pkgname/archive/$pkgver.zip"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python2 setup.py check
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python2 setup.py install --root="$pkgdir" -O1
|
|
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
|
|
install -Dm644 README.rst "$pkgdir/usr/share/doc/$pkgname/README.rst"
|
|
}
|
|
|
|
sha512sums="ba57bb1a6842da951da2c807e49f0b1f18c36e754dad567cc912dff6e979cd6aefd6063f10bd99d32542f73d8001a5bfcebd54471f445259dc218386e00fe61d github-cli-1.0.0.zip"
|