Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 43 lines (27 sloc) 814 Bytes
#!/bin/env beesh
SRCURL[0]="http://ftp.gnu.org/gnu/guile/guile-1.8.7.tar.gz"
PATCHURL[0]="http://git.savannah.gnu.org/cgit/guile.git/patch/?id=445f31fc06d338f0cafda188d0287f935c2edc3c guile-1.8.7-process-multiline-directive.patch"
#SRCURL[0]="http://git.savannah.gnu.org/cgit/guile.git/snapshot/release_1-9-12.tar.gz"
PGRP=( uncategorized )
# BEE_CONFIGURE=compat
# EXCLUDE=""
mee_patch() {
# bee_patch
patch -Np1 -i ${F}/guile-1.8.7-process-multiline-directive.patch scripts/snarf-check-and-output-texi
# ./autogen.sh
}
mee_configure() {
bee_configure \
--disable-error-on-warning \
--enable-static \
--enable-shared \
--disable-nls \
--with-modules \
--with-threads
}
mee_build() {
bee_build
}
mee_install() {
bee_install
}