-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibtrellis.rb
31 lines (29 loc) · 1.26 KB
/
libtrellis.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class Libtrellis < Formula
desc "Library for working with the Lattice ECP5 bit-stream format."
homepage "https://symbiflow.github.io/#trellis"
head "https://github.com/SymbiFlow/prjtrellis.git" # Needs to be a recursive clone
depends_on "cmake" => :build
# modern C++14 compiler & git for devel
depends_on "boost"
depends_on "boost-python"
depends_on "openocd" # Technically optional
depends_on "python" # possibly only for devel TODO: check
def install
cd "libtrellis"
# Note that -DCMAKE_INSTALL_PREFIX is part of the brew standard cmake args
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 prjtrellis`. 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