diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-10-06 09:31:03 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-07 14:00:45 -0700 |
commit | a83a2d8b1f1609b3ad6f2eef5fa5c0202bae41e5 (patch) | |
tree | 715553ce0dbd188f6730227cb9264745bab3f261 /scripts | |
parent | 424558cf89bd172a7729943af9df21f6ce50c2d8 (diff) | |
download | subsurface-a83a2d8b1f1609b3ad6f2eef5fa5c0202bae41e5.tar.gz |
build-system: add Grantlee to our get dependency script
I actually don't know why this was missing...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get-dep-lib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh index ec2f8313c..67931c4d4 100755 --- a/scripts/get-dep-lib.sh +++ b/scripts/get-dep-lib.sh @@ -15,6 +15,7 @@ CURRENT_LIBXML2="v2.9.4" CURRENT_LIBFTDI="1.3" CURRENT_KIRIGAMI="8691651c1f0d09430416ba5fe2130647554b06a9" CURRENT_BREEZE_ICONS="" +CURRENT_GRANTLEE="v5.0.0" # Checkout library from git # Ensure specified version is checked out, @@ -183,6 +184,9 @@ for package in "${PACKAGES[@]}" ; do sqlite) curl_download_library sqlite https://www.sqlite.org/2017/ sqlite-autoconf-${CURRENT_SQLITE}.tar.gz ;; + grantlee) + git_checkout_library grantlee $CURRENT_GRANTLEE https://github.com/steveire/grantlee.git + ;; *) echo "unknown package \"$package\"" exit 1 |