Auxiliary files
This commit is contained in:
parent
96973d961c
commit
c4c21653ef
|
@ -0,0 +1,28 @@
|
|||
Copyright (c) 2004 Christoph de Mattia
|
||||
Copyright (c) 2004-2005 Eric Knauel
|
||||
Copyright (c) 2004-2005 Martin Gasbichler
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. The name of the authors may not be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
scheme_DATA = \
|
||||
scheme/afs.scm \
|
||||
scheme/browse-directory-list.scm \
|
||||
scheme/cmdline.scm \
|
||||
scheme/comp-cmd.scm \
|
||||
scheme/complete-util.scm \
|
||||
scheme/complete.scm \
|
||||
scheme/completer.scm \
|
||||
scheme/config.scm \
|
||||
scheme/console.scm \
|
||||
scheme/debug-packages.scm \
|
||||
scheme/eval-environment.scm \
|
||||
scheme/eval.scm \
|
||||
scheme/focus.scm \
|
||||
scheme/fs-object.scm \
|
||||
scheme/handle-fatal-error.scm \
|
||||
scheme/history.scm \
|
||||
scheme/inspector.scm \
|
||||
scheme/job-viewer.scm \
|
||||
scheme/job.scm \
|
||||
scheme/layout.scm \
|
||||
scheme/modal-window.scm \
|
||||
scheme/network-viewer.scm \
|
||||
scheme/nuit-engine.scm \
|
||||
scheme/nuit-packages.scm \
|
||||
scheme/objects.scm \
|
||||
scheme/plugins.scm \
|
||||
scheme/process.scm \
|
||||
scheme/scheme-commands.scm \
|
||||
scheme/select-element.scm \
|
||||
scheme/select-line.scm \
|
||||
scheme/select-list.scm \
|
||||
scheme/std-command.scm \
|
||||
scheme/std-viewer.scm \
|
||||
scheme/termbuf.scm \
|
||||
scheme/tty-debug.scm \
|
||||
scheme/user-group-info.scm \
|
||||
scheme/utils.scm \
|
||||
scheme/win.scm \
|
||||
|
||||
install_DATA = \
|
||||
install.scm dump-image.scm
|
||||
|
||||
doc_DATA = \
|
||||
doc/user.html
|
||||
|
||||
DATA = $(scheme_DATA) $(install_DATA)
|
||||
# $(doc_DATA)
|
||||
|
||||
DIST_COMMON = README AUTHORS COPYING NEWS
|
||||
|
||||
DISTFILES = $(DATA) $(DIST_COMMON)
|
||||
|
||||
.PHONY = dist
|
||||
distdir= /tmp
|
||||
distname = commander-s-0.1
|
||||
distfile=$(distdir)/$(distname).tar.gz
|
||||
|
||||
dist:
|
||||
distname=$(distname) && \
|
||||
if [ -d $(distdir) ] && \
|
||||
[ -w $(distfile) -o -w $(distdir) ]; then \
|
||||
rm -f $$distname && \
|
||||
ln -s . $$distname && \
|
||||
files='' && \
|
||||
for i in $(DISTFILES); do \
|
||||
if [ "$$i" != "c/sysdep.h" ]; then \
|
||||
files="$$files $$distname/$$i"; \
|
||||
fi \
|
||||
done && \
|
||||
tar -cf - $$files | \
|
||||
gzip --best >$(distfile) && \
|
||||
rm $(distname); \
|
||||
else \
|
||||
echo "Can't write $(distfile)" >&2; \
|
||||
fi
|
||||
|
||||
publish: dist
|
||||
cp $(distfile) /afs/wsi/home/scsh/ftp/pub/scsh/packages/commander-s
|
16
README
16
README
|
@ -1,7 +1,7 @@
|
|||
Commander S 0.0 README -*- outline -*-
|
||||
Commander S 1.0 README -*- outline -*-
|
||||
|
||||
|
||||
Tuebingen, June 2005
|
||||
Tuebingen, October 2005
|
||||
|
||||
|
||||
Commander S
|
||||
|
@ -19,11 +19,15 @@ Commander S 0.0 README -*- outline -*-
|
|||
0.6.6 source tree.
|
||||
(From <http://www.scsh.net>)
|
||||
|
||||
- Version 1.1.0 of install-lib, the scsh installation library
|
||||
(From <http://lamp.epfl.ch/~schinz/scsh_packages/scsh-install-lib-1.1.0.tar.gz>)
|
||||
- Version 1.2.0 of install-lib, the scsh installation library
|
||||
(From <http://lamp.epfl.ch/~schinz/scsh_packages/scsh-install-lib-1.2.0.tar.gz>)
|
||||
|
||||
- Version 0.6 of Sunterlib, the Scheme Untergrund library
|
||||
(From <http://savannah.nongnu.org/download/sunterlib/sunterlib-0.6.tar.gz>)
|
||||
- Version 1.0 of scsh-ncurses, the scsh bindings for ncurses
|
||||
(From <ftp://ftp.scsh.net/pub/scsh/packages/scsh-ncurses/scsh-ncurses-1.0.tar.gz>)
|
||||
|
||||
- Version 0.8 of Sunterlib, the Scheme Untergrund library (NOT
|
||||
RELEASED YET)
|
||||
(From <http://savannah.nongnu.org/download/sunterlib/sunterlib-0.8.tar.gz>)
|
||||
|
||||
* Installation
|
||||
|
||||
|
|
Loading…
Reference in New Issue