Skip to content

Commit

Permalink
Add Libiconv v1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jan 9, 2019
1 parent c860793 commit b5301d4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Libiconv/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using BinaryBuilder

# Collection of sources required to build Gettext
name = "Libiconv"
version = v"1.15"
sources = [
"https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$(version.major).$(version.minor).tar.gz" =>
"ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178",
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/libiconv-*/
./configure --prefix=$prefix --host=$target
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()

# The products that we will ensure are always built
products(prefix) = [
LibraryProduct(prefix, "libiconv", :libiconv)
]

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

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

0 comments on commit b5301d4

Please sign in to comment.