summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 669c8557646d912e0f88fbccdfb552a174bc00b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>

pkgname=join-python
pkgver=1.1
pkgrel=1
pkgdesc="Join-calculus for Python"
arch=(any)
url="https://github.com/maandree/join-python"
license=('GPL3')
install=join-python.install
depends=(python3)
makedepends=(texinfo)
source=($url/archive/$pkgver.tar.gz)
sha256sums=('9e463fe40789877e5e9a806f1111c077a29ea01bdc75d8c8913f876ff244b938')


build() {
  cd "$srcdir/$pkgname-$pkgver"
  make PREFIX=/usr DESTDIR="$pkgdir" PYVERSION=3.4
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make PREFIX=/usr DESTDIR="$pkgdir" PYVERSION=3.4 install
}