Skip to content

Commit

Permalink
New Recipe: CUDD v3.0.0 (#5521)
Browse files Browse the repository at this point in the history
* New Recipe: CUDD v3.0.0

* removed sed command, all platforms, expand cxx abis

* switching cross_compiling on

* library name suggestions for windows build
  • Loading branch information
MaximeBouton authored Sep 18, 2022
1 parent c387acd commit e15ddea
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions C/CUDD/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder, Pkg

name = "CUDD"
version = v"3.0.0"

# Collection of sources required to complete build
sources = [
ArchiveSource("http://davidkebo.com/source/cudd_versions/cudd-$(version).tar.gz", "b8e966b4562c96a03e7fbea239729587d7b395d53cadcc39a7203b49cf7eeb69")
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir
cd cudd-3.0.0/
sed -i 's/cross_compiling=no/cross_compiling=yes/' configure
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target} --enable-shared --enable-obj --enable-silent-rules
make -j${nproc}
make install
"""

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
platforms = expand_cxxstring_abis(platforms)

# The products that we will ensure are always built
products = [
LibraryProduct(["libcudd", "libcudd-3-0-0"], :libcudd)
]

# Dependencies that must be installed before this package can be built
dependencies = Dependency[
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

0 comments on commit e15ddea

Please sign in to comment.