Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
homebrew-personal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benedikt Steinbusch
homebrew-personal
Commits
d5217655
Commit
d5217655
authored
3 years ago
by
Benedikt Steinbusch
Browse files
Options
Downloads
Patches
Plain Diff
add trisycl formula
parent
f8966da9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Formula/trisycl.rb
+33
-0
33 additions, 0 deletions
Formula/trisycl.rb
with
33 additions
and
0 deletions
Formula/trisycl.rb
0 → 100644
+
33
−
0
View file @
d5217655
# Documentation: https://docs.brew.sh/Formula-Cookbook
# https://rubydoc.brew.sh/Formula
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
class
Trisycl
<
Formula
desc
"Generic system-wide modern C++ for heterogeneous platforms with SYCL from Khronos Group"
homepage
"https://github.com/triSYCL/triSYCL"
license
"NCSA"
head
"https://github.com/triSYCL/triSYCL.git"
depends_on
"cmake"
=>
:build
depends_on
"boost"
depends_on
"llvm"
depends_on
"range-v3"
def
install
# ENV.deparallelize # if your formula fails when building in parallel
system
"cmake"
,
"."
,
*
std_cmake_args
system
"make"
,
"install"
# if this fails, try separate make/make install steps
end
test
do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test triSYCL`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system
"false"
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment