-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib build script: use lowercase for non-environment variables
- Loading branch information
1 parent
3f4fb10
commit 4fd6ebb
Showing
69 changed files
with
837 additions
and
825 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Depends: | ||
# libsigsegv, libiconv, libintl (gettext) | ||
|
||
VER="3.7" | ||
DNAME="${NAME}-${VER}" | ||
FNAME="${DNAME}.tar.xz" | ||
SOURCE="https://ftp.gnu.org/gnu/diffutils/${FNAME}" | ||
ver="3.7" | ||
dname="${name}-${ver}" | ||
fname="${dname}.tar.xz" | ||
src="https://ftp.gnu.org/gnu/diffutils/${fname}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# this simply re-builds freetype with harfbuzz support | ||
|
||
NAME="freetype" | ||
name="freetype" | ||
# use the same configuration | ||
. "CONFIG/${NAME}" | ||
. "CONFIG/${name}" | ||
|
||
DEPENDS=(harfbuzz) | ||
depends=(harfbuzz) | ||
|
||
# add harfbuzz support | ||
CONFIG_OPTS=($(echo ${CONFIG_OPTS[@]} | sed -e 's|with-harfbuzz=no|with-harfbuzz=yes|')) | ||
config_opts=($(echo ${config_opts[@]} | sed -e 's|with-harfbuzz=no|with-harfbuzz=yes|')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Notes: | ||
# - includes build configs for GNU Autotools & Meson | ||
|
||
DEPENDS=(pkg-config) | ||
depends=(pkg-config) | ||
|
||
VER="1.0.5" | ||
DNAME="${NAME}-${VER}" | ||
FNAME="${DNAME}.tar.bz2" | ||
SOURCE="https://github.com/${NAME}/${NAME}/releases/download/v${VER}/${FNAME}" | ||
ver="1.0.5" | ||
dname="${name}-${ver}" | ||
fname="${dname}.tar.bz2" | ||
src="https://github.com/${name}/${name}/releases/download/v${ver}/${fname}" | ||
|
||
CMD_CONFIG=(meson) | ||
CMD_BUILD=(ninja) | ||
CMD_INSTALL=(ninja install) | ||
cmd_config=(meson) | ||
cmd_build=(ninja) | ||
cmd_install=(ninja install) | ||
|
||
CONFIG_OPTS=(-Ddocs=false) | ||
config_opts=(-Ddocs=false) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.