diff options
author | davidovski <david@davidovski.xyz> | 2022-01-04 14:43:57 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-04 14:43:57 +0000 |
commit | 3c3d31f0f9e94a8679e6f9e5f65322ca027a7c54 (patch) | |
tree | 931afdeccd00fd40f3965646ea0bd5949397ac7c /repo/core/guile.xibuild | |
parent | 1dd45cbc25ccf684f152535edee0364ea5f050ce (diff) |
edited util linux and added guile
Diffstat (limited to 'repo/core/guile.xibuild')
-rw-r--r-- | repo/core/guile.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/guile.xibuild b/repo/core/guile.xibuild new file mode 100644 index 0000000..1d9784a --- /dev/null +++ b/repo/core/guile.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(gmp libltdl ncurses texinfo libunistring gc libffi) + +SOURCE=https://ftp.gnu.org/gnu/guile/guile-2.2.7.tar.gz +DESC="The free Bourne Again Shell" + +build () { + ./autogen.sh + ./configure --prefix=/usr --disable-static + make + make DESTDIR=$PKG_DEST install +} |