Skip to content

Commit

Permalink
Fix broken formulas.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakercp committed Apr 1, 2019
1 parent 6aff454 commit 038cd19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion scripts/formulas/ucdn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

# array of build types supported by this formula
# you can delete this to implicitly support *all* types
FORMULA_TYPES=( "osx", "msys2", "vs" )

FORMULA_TYPES=( "osx" "msys2" "vs" )

# download the source code and unpack it into LIB_NAME
function download() {
Expand Down
6 changes: 3 additions & 3 deletions scripts/formulas/unibreak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# array of build types supported by this formula
# you can delete this to implicitly support *all* types

FORMULA_TYPES=( "osx", "msys2", "vs" )
FORMULA_TYPES=( "osx" "msys2" "vs" )

VER=4_0

Expand Down Expand Up @@ -72,7 +72,7 @@ function copy() {
INSTALLED_LIB=src/ReleaseDir/libunibreak.a
elif [ "$TYPE" == "vs" ] ; then
INSTALLED_INCLUDE_DIR=src
INSTALLED_LIB=src/Release/unibreak.lib
INSTALLED_LIB_DIR=src/Release/unibreak.lib
fi

mkdir -p $1/include/
Expand All @@ -84,7 +84,7 @@ function copy() {
cp -v $INSTALLED_INCLUDE_DIR/wordbreak.h $1/include/

mkdir -p $1/lib/$TYPE/
cp -v $INSTALLED_LIB $1/lib/$TYPE/
cp -v $INSTALLED_LIB_DIR $1/lib/$TYPE/

# copy license file
rm -rf $1/license # remove any older files if exists
Expand Down
2 changes: 1 addition & 1 deletion scripts/formulas/utf8proc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# array of build types supported by this formula
# you can delete this to implicitly support *all* types
FORMULA_TYPES=( "osx", "msys2" )
FORMULA_TYPES=( "osx" "msys2" )

# Currently for VS, we use cmake and manually build from the command line.

Expand Down

0 comments on commit 038cd19

Please sign in to comment.