diff options
author | Mattias Andrée <maandree@kth.se> | 2019-10-22 20:51:07 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-10-22 20:51:07 +0200 |
commit | 07e3ab9c08093e519d5f6ad05228c37cfb3747a4 (patch) | |
tree | 73d7f9cc32ff5b13686dbf68b75476f7ee33e9da | |
parent | Update libcoopgamma to version 1.2.1 (diff) | |
download | aur-packages-07e3ab9c08093e519d5f6ad05228c37cfb3747a4.tar.gz aur-packages-07e3ab9c08093e519d5f6ad05228c37cfb3747a4.tar.bz2 aur-packages-07e3ab9c08093e519d5f6ad05228c37cfb3747a4.tar.xz |
Update pylibcoopgamma to version 1.1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | pylibcoopgamma/PKGBUILD | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/pylibcoopgamma/PKGBUILD b/pylibcoopgamma/PKGBUILD index e607db8..6708559 100644 --- a/pylibcoopgamma/PKGBUILD +++ b/pylibcoopgamma/PKGBUILD @@ -1,26 +1,24 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se> pkgname=pylibcoopgamma -pkgver=1.1.1 +pkgver=1.1.2 pkgrel=1 pkgdesc="Cooperative gamma Python 3 library" arch=(i686 x86_64) url="https://github.com/maandree/pylibcoopgamma" -license=('GPL3') +license=('custom:ISC') depends=('python>=3.4' libcoopgamma) -makedepends=('python>=3.4' libcoopgamma cython general-preprocessor) -source=($url/archive/$pkgver.tar.gz) -sha256sums=(a8c295b00914ebb67ab528d9232c974558a12b2250386212388b93a1705590c4) +makedepends=('python>=3.4' libcoopgamma cython) +source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) +sha256sums=(4da52548106e4a430aec6a302d33f7a4e034942c9cd507ccb8478b1cde5b29a7) build() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr + cd "$srcdir/$pkgname-$pkgver" + make } - package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr DESTDIR="$pkgdir" install + cd "$srcdir/$pkgname-$pkgver" + make install DESTDIR="$pkgdir" } - |