void-packages/srcpkgs/libclc-git/template

27 lines
755 B
Bash
Raw Normal View History

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