X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id F3A0FDCD529 for ; Sun, 24 Apr 2016 22:08:42 +0000 (UTC) Received: from nov-007-i511.relay.mailchannels.net (nov-007-i511.relay.mailchannels.net [46.232.183.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 195EEDDB74C for ; Sun, 24 Apr 2016 22:08:40 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 06DFF1005DD for ; Sun, 24 Apr 2016 22:08:36 +0000 (UTC) Received: from ocean.mxroute.com (ip-10-213-14-133.us-west-2.compute.internal [10.213.14.133]) by relay.mailchannels.net (Postfix) with ESMTPA id 510A21005D0 for ; Sun, 24 Apr 2016 22:08:35 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from ocean.mxroute.com ([TEMPUNAVAIL]. [10.101.101.104]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.6.11); Sun, 24 Apr 2016 22:08:35 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: mxroute|x-authuser|developer@it-offshore.co.uk X-MailChannels-Auth-Id: mxroute X-MC-Loop-Signature: 1461535715538:4251204469 X-MC-Ingress-Time: 1461535715538 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=it-offshore.co.uk; s=default; h=References:In-Reply-To:Message-Id:Date: Subject:To:From; bh=kVCSBswqxDPUA9GJq8KxrMBTWxZlpC0AU/HeGRHvu8c=; b=HMdNkdhEQ xNDg47hFZlmVhHjQTxZ5AxorXARNsF9Y26kCXHwTRdmhB8ABD4hJjPvtBoXvXBZoaCtV8Fj0AGaT9 D7NM2pMtY5TiEAPNZb5FyA3FkBWxgv6al3iu9jytCdymMqlJUznCIZ33+wGmZXMwc1IMJdvRSgx9c FG4oQj43wwuZqjvg86o4fa/n3j57xJyrrutLOnSvZEeOvMeYOlXbjm9TbR7Na1gflnymWMTOI89S9 P+kbRnVgHni0mqao4qfnshs8QwJPcu1dzyBmAyShCaOcRiqEwKjMV8vTRU5IzZS+ZxriarSr7RCww vz7fL2oKNoLxjVER8PqZ5jyLA==; Received: from [81.4.121.188] (port=52680 helo=localhost.localdomain) by ocean.mxroute.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-SHA256:128) (Exim 4.86_1) (envelope-from ) id 1auSCf-0000Ms-M2 for alpine-devel@lists.alpinelinux.org; Sun, 24 Apr 2016 18:08:34 -0400 From: Stuart Cardall To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 6/9] testing/opencl-icd-loader: new aport Date: Sun, 24 Apr 2016 22:08:12 +0000 Message-Id: <1461535695-22540-7-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1461535695-22540-1-git-send-email-developer@it-offshore.co.uk> References: <1461535695-22540-1-git-send-email-developer@it-offshore.co.uk> X-AuthUser: developer@it-offshore.co.uk X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/opencl-icd-loader/APKBUILD | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/opencl-icd-loader/APKBUILD diff --git a/testing/opencl-icd-loader/APKBUILD b/testing/opencl-icd-loader/APKBUILD new file mode 100644 index 0000000..dbf14c2 --- /dev/null +++ b/testing/opencl-icd-loader/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=opencl-icd-loader +_pkgreal=ocl-icd +pkgver=2.2.9 +pkgrel=0 +pkgdesc="Generic OpenCL ICD Loader" +url="https://forge.imag.fr/projects/ocl-icd/" +arch="all" +license="custom" +depends="" +depends_dev="$pkgname" +makedepends="$depends_dev ruby" +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://forge.imag.fr/frs/download.php/716/$_pkgreal-$pkgver.tar.gz" + +builddir="$srcdir"/$_pkgreal-$pkgver +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + || return 1 + # tests + #tests/testsuite || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 + install -D -m644 COPYING "$pkgdir"/usr/share/doc/ocl-icd/LICENSE +} + +md5sums="7dab1a9531ea79c19a414a9ee229504e opencl-icd-loader-2.2.9.tar.gz" +sha256sums="0c8ac13e2c5b737c34de49f9aca6cad3c4d33dd0bbb149b01238d76e798feae5 opencl-icd-loader-2.2.9.tar.gz" +sha512sums="d0b1531812feb493bdc27fd4a141796c2ecd14efd79cfa00af47c7c6edc1a7b323cd2d3b7254117a1cfa1c55e24494f662034041a0976b6ee5a6154626eb2d65 opencl-icd-loader-2.2.9.tar.gz" -- 2.8.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---