From a9f4997ac6839f30b6be38ea45cd5489a6c834a4 Mon Sep 17 00:00:00 2001 From: Logan Cox <195850+lo5an@users.noreply.github.com> Date: Wed, 7 Jun 2023 12:13:04 -0500 Subject: [PATCH] Fix broken dependencies in lib.make Missing download info for phpCAS and Bootstrap libraries --- make/lib.make | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/make/lib.make b/make/lib.make index 26e7bfe..3bf4a4c 100644 --- a/make/lib.make +++ b/make/lib.make @@ -109,16 +109,12 @@ projects[oulib_docreg][download][url] = "https://github.com/OULibraries/oulib_do projects[oulib_docreg][download][revision] = "d6cc7d5c5863f80ccbedf40af171d7800bfd8356" ; Libraries -; Please fill the following out. Type may be one of get, git, bzr or svn, -; and url is the url of the download. -libraries[bootstrap][download][type] = "" -libraries[bootstrap][download][url] = "" +libraries[cas][download][type] = "git" +libraries[cas][download][url] = "https://github.com/apereo/phpCAS" +libraries[cas][directory_name] = "CAS" +libraries[cas][type] = "library" + +libraries[bootstrap][download][type] = "get" +libraries[bootstrap][download][url] = "https://github.com/twbs/bootstrap/releases/download/v3.3.1/bootstrap-3.3.1-dist.zip" libraries[bootstrap][directory_name] = "bootstrap" libraries[bootstrap][type] = "library" - -; Please fill the following out. Type may be one of get, git, bzr or svn, -; and url is the url of the download. -libraries[CAS][download][type] = "" -libraries[CAS][download][url] = "" -libraries[CAS][directory_name] = "CAS" -libraries[CAS][type] = "library"