diff options
author | Mattias Andrée <maandree@kth.se> | 2016-06-23 19:45:44 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-06-23 19:45:44 +0200 |
commit | 968f6e959b5cf375dafdf4958940142bd023f457 (patch) | |
tree | 0c1813801e74752cb668410ac1ee2d13ac50a2e0 /dist/archlinux/stable/PKGBUILD | |
parent | Update documentation (diff) | |
download | solar-python-968f6e959b5cf375dafdf4958940142bd023f457.tar.gz solar-python-968f6e959b5cf375dafdf4958940142bd023f457.tar.bz2 solar-python-968f6e959b5cf375dafdf4958940142bd023f457.tar.xz |
Remove dist2.4
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'dist/archlinux/stable/PKGBUILD')
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD deleted file mode 100644 index c73d8f8..0000000 --- a/dist/archlinux/stable/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> - -pkgname=solar-python -pkgver=2.3 -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=(85571fc096f21ee4b6ba0f2ffc94e2659625c602f5342c8508040a2cd5ac2704) - - -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" -} - |