[arch-commits] Commit in opencl-headers/repos (3 files)

Laurent Carlier lcarlier at archlinux.org
Sun Jul 19 19:34:54 UTC 2015


    Date: Sunday, July 19, 2015 @ 21:34:53
  Author: lcarlier
Revision: 137124

archrelease: copy trunk to community-testing-any

Added:
  opencl-headers/repos/community-testing-any/
  opencl-headers/repos/community-testing-any/LICENSE.txt
    (from rev 137123, opencl-headers/trunk/LICENSE.txt)
  opencl-headers/repos/community-testing-any/PKGBUILD
    (from rev 137123, opencl-headers/trunk/PKGBUILD)

-------------+
 LICENSE.txt |   20 ++++++++++++++++++++
 PKGBUILD    |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)

Copied: opencl-headers/repos/community-testing-any/LICENSE.txt (from rev 137123, opencl-headers/trunk/LICENSE.txt)
===================================================================
--- community-testing-any/LICENSE.txt	                        (rev 0)
+++ community-testing-any/LICENSE.txt	2015-07-19 19:34:53 UTC (rev 137124)
@@ -0,0 +1,20 @@
+ * Copyright (c) 2008-2010 The Khronos Group Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and/or associated documentation files (the
+ * "Materials"), to deal in the Materials without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Materials, and to
+ * permit persons to whom the Materials are furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Materials.
+ *
+ * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

Copied: opencl-headers/repos/community-testing-any/PKGBUILD (from rev 137123, opencl-headers/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2015-07-19 19:34:53 UTC (rev 137124)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Sylvain HENRY <hsyl20 at yahoo.fr>
+
+pkgname=opencl-headers
+pkgver=2.0.20150719
+_clbasever=2.0
+pkgrel=1
+epoch=2
+pkgdesc='OpenCL (Open Computing Language) header files'
+arch=('any')
+url='http://www.khronos.org/registry/cl/'
+license=('custom')
+source=("https://sources.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.src.tar.xz"
+        'LICENSE.txt')
+_headers=("http://www.khronos.org/registry/cl/api/${_clbasever}/cl_ext.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_egl.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl_ext.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.hpp"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_platform.h"
+          "http://www.khronos.org/registry/cl/api/${_clbasever}/opencl.h")
+sha1sums=('fc5a95a4811af1b6d14cca00679d9032b2a15deb'
+          '98abb35b2eca82d0fc19db6d28fcc7bd20be0655')
+
+# source PKGBUILD && mksource
+mksource() {
+   cd "${srcdir}"
+   _dirname=${pkgname}-${pkgver}
+   mkdir ${_dirname}
+
+   pushd ${_dirname}
+   for _h in ${_headers[@]}; do
+      wget ${_h}
+   done
+   popd
+
+   tar -cJv --exclude=CVS -f ${_dirname}.src.tar.xz ${_dirname}
+   rm -rf ${_dirname}
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   install -dm755 "${pkgdir}"/usr/include/CL
+
+   for h in $(ls -1 *.h *.hpp); do
+      install -m 644 ${h} "${pkgdir}"/usr/include/CL/
+   done
+
+   install -D -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



More information about the arch-commits mailing list