void-packages/srcpkgs/libclc-git/template
2015-04-26 09:03:32 +02:00

27 lines
755 B
Bash

# Template file for 'libclc-git'
pkgname=libclc-git
version=20150408
revision=1
build_style=configure
hostmakedepends="git python"
makedepends="libffi-devel libedit-devel zlib-devel llvm clang ncurses-devel"
short_desc="Open implementation of the OpenCL C programming language"
maintainer="John Galt <johngaltfirstrun@gmail.com>"
license="BSD/MIT"
homepage="http://libclc.llvm.org"
provides="libclc-${version}_${revision}"
replaces="libclc>=0"
only_for_archs="i686 x86_64"
do_fetch() {
local _githash="69ebc81135ee35aab0154a5eed057830f962ab00"
local url="http://llvm.org/git/libclc.git"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${wrksrc}
cd ${wrksrc}
git checkout ${_githash}
}
do_configure() {
./configure.py --prefix=/usr
}