Merge pull request #479 from RealJohnGalt/topic-gallium

New package: libclc-git
This commit is contained in:
Juan RP 2014-07-23 09:10:11 +02:00
commit ff21819c5a
4 changed files with 68 additions and 0 deletions

1
srcpkgs/libclc-devel-git Symbolic link
View file

@ -0,0 +1 @@
libclc-git

View file

@ -0,0 +1,65 @@
# Template file for 'libclc-git'
pkgname=libclc-git
sha=3b853378ab3bd607aa758492b61522b0a83084cb
version=20140717
revision=1
makedepends="python libffi-devel zlib-devel llvm>=3.4.2_2 clang>=3.4.2_2"
depends="libclc-ptx-git libclc-r600-git"
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"
do_fetch() {
# Upstream libclc git is http://llvm.org/git/libclc.git, however
# we use a minimal git-core for git:// protocol.
local url="git://github.com/llvm-mirror/libclc"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${wrksrc}
cd ${wrksrc}
git reset --hard ${sha}
}
do_configure() {
./configure.py --prefix=/usr
}
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=$DESTDIR install
}
libclc-devel-git_package() {
short_desc+=" (development files)"
provides="libclc-devel-${version}_${revision}"
replaces="libclc-devel>=0"
pkg_install() {
vmove usr/share
vmove usr/include
}
}
libclc-ptx-git_package() {
short_desc+=" - ptx support only"
provides="libclc-ptx-${version}_${revision}"
replaces="libclc-ptx>=0"
depends="libclc-devel"
pkg_install() {
vmove "usr/lib/clc/*ptx*.bc"
}
}
libclc-r600-git_package() {
short_desc+=" - r600 support only"
provides="libclc-r600-${version}_${revision}"
replaces="libclc-r600>=0"
depends="libclc-devel"
pkg_install() {
vmove "usr/lib/clc/*r600*.bc"
}
}

1
srcpkgs/libclc-ptx-git Symbolic link
View file

@ -0,0 +1 @@
libclc-git

1
srcpkgs/libclc-r600-git Symbolic link
View file

@ -0,0 +1 @@
libclc-git