the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: scheme48
Version: 1.8
Revision: 1
Source: http://s48.org/%v/%n-%v.tgz
Source-MD5: f1c0a515039d4df4e07721f21940ad6d
DocFiles: COPYING INSTALL README
Description: Popular implementation of the Scheme language
PatchFile: %n.patch
PatchFIle-MD5: 5b8cbad7b3efc2b0124d3065e1ae10f2
BuildDepends: fink (>= 0.24.12)
ConfigureParams: <<
--includedir=%p/include/scheme48 --mandir=%p/share/man
<<
InstallScript: <<
# mkdir -p %i/lib %i/bin %i/include %i/share/doc/%n %i/share/man/man1
make install DESTDIR=%d
# perl -pi -e 's|%i|%p|g' %i/share/man/man1/%n.1
# perl -pi -e 's|%i|%p|g' %i/bin/%n
# cp -r doc %i/share/doc/%n
<<
DescDetail: <<
Scheme48 is an implementation of Scheme written by Richard Kelsey and
Jonathan Rees. It is based on a byte-code interpreter and is designed
to be used as a testbed for experiments in implementation techniques
and as an expository tool.
Scheme is a statically scoped and properly tail-recursive dialect of
the Lisp programming language invented by Guy Lewis Steele Jr. and
Gerald Jay Sussman of MIT. It was designed to have an exceptionally
clear and simple semantics and few different ways to form expressions.
A wide variety of programming paradigms, including imperative,
functional, and message passing styles, find convenient expression
in Scheme.
<<
License: BSD
Homepage: http://s48.org/
Maintainer: Jesse Alama
diff -Naur --exclude='*~' scheme48-1.8/Makefile.in scheme48-1.8.fink/Makefile.in
--- scheme48-1.8/Makefile.in 2008-01-26 07:06:27.000000000 -0800
+++ scheme48-1.8.fink/Makefile.in 2008-04-21 20:33:00.000000000 -0700
@@ -409,7 +409,7 @@
done
inst-config-script:
- config_script=$(bindir)/$(CONFIG_SCRIPT) && \
+ config_script=$(DESTDIR)$(bindir)/$(CONFIG_SCRIPT) && \
sed -e 's,@incdir\@,$(incdir),g' \
-e 's,@libdir\@,$(libdir),g' \
-e 's,@CC\@,$(CC),g' \