git » libclc.git » commit e6fddae

update to latest git commit; use python v3

author Andreas Radke
2019-06-12 17:29:34 UTC
committer Andreas Radke
2019-06-12 17:29:34 UTC
parent d8316e2a9c774b5211ecadd50fe6107c61044459

update to latest git commit; use python v3

PKGBUILD +4 -7

diff --git a/PKGBUILD b/PKGBUILD
index ddde8e5..ae111c8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,15 @@
 # Maintainer: Laurent Carlier <lordheavym@gmail.com>
 
 pkgname=libclc
-pkgver=0.2.0+584+4501738
+pkgver=0.2.0+585+9f6204e
 pkgrel=1
 pkgdesc="Library requirements of the OpenCL C programming language"
 arch=('any')
 url="https://libclc.llvm.org/"
 license=('MIT')
-makedepends=('clang' 'llvm' 'python2' 'git')
+makedepends=('clang' 'llvm' 'python' 'git')
 options=('staticlibs')
-source=('git+https://llvm.org/git/libclc.git#commit=4501738')
+source=('git+https://llvm.org/git/libclc.git#commit=9f6204e')
 md5sums=('SKIP')
 
 pkgver() {
@@ -20,10 +20,7 @@ pkgver() {
 
 build() {
   cd libclc
-  
-  sed -i 's/"python < $in >/sys.executable + " < $in >/g' configure.py
-  
-  python2 ./configure.py --prefix=/usr
+   ./configure.py --prefix=/usr
   make
 }