commit 386ad9e
chld
·
2026-08-22 05:35:02 +0000 UTC
parent 548ad6b
init guile
4 files changed,
+29,
-3
+3,
-3
1@@ -1,6 +1,6 @@
2 name: emacs
3-description: gnu emacs
4-license:
5+description: the GNU emacs editor
6+license: GPL-3.0-or-later
7 upstream:
8 version: 30.2
9-maintainer:
10+maintainer: chld
+0,
-0
+6,
-0
1@@ -0,0 +1,6 @@
2+name: guile
3+description: the GNU dialect of scheme
4+license: GPL-3.0-or-later
5+upstream:
6+version: 3.0.11
7+maintainer: chld
+20,
-0
1@@ -0,0 +1,20 @@
2+#!/bin/sh -ue
3+NAME=guile
4+VERSION=3.0.11
5+RELEASE=1
6+SOURCE="https://ftp.gnu.org/pub/gnu/guile/guile-3.0.11.tar.xz"
7+build(){
8+ CFLAGS='-static' LDFLAGS='-static' ./configure \
9+ --prefix=/ \
10+ --bindir=/bin \
11+ --sbindir=/bin \
12+ --libdir=/lib \
13+ --includedir=/include \
14+ --sysconfdir=/etc \
15+ --deediokde
16+
17+ # gmake PREFIX="$PREFIX" DESTDIR="$PKG" CFLAGS='-static' LDFLAGS='-static' -j"$NPROC" || die "build failed"
18+ # gmake DESTDIR="$PKG" install || die "gmake install failed"
19+
20+}
21+. ${0%/*}/../../libsh/libdmake.sh