diff options
Diffstat (limited to 'solar-python/PKGBUILD')
-rw-r--r-- | solar-python/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/solar-python/PKGBUILD b/solar-python/PKGBUILD new file mode 100644 index 0000000..39adbc7 --- /dev/null +++ b/solar-python/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=solar-python +pkgver=2.4 +pkgrel=1 +pkgdesc="Solar data calculation and prediction library for Python" +arch=(any) +url="https://github.com/maandree/solar-python" +license=('AGPL3') +depends=(python3) +makedepends=(make coreutils python3 texinfo) +install=solar-python.install +source=($url/archive/$pkgver.tar.gz) +sha256sums=(fda9576e26d4e46989d36cfba0208bf7167a063c4f5b62cf9c7f9a0bfacfb740) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr PY_MAJOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 1)" PY_MINOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 2)" +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr PY_MAJOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 1)" PY_MINOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 2)" install DESTDIR="$pkgdir" +} + |