| 1 | ================================================================ |
|---|
| 2 | Logtalk - Open source object-oriented logic programming language |
|---|
| 3 | Release 2.31.1 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2008 Paulo Moura. All Rights Reserved. |
|---|
| 6 | ================================================================ |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | This directory contains some shell scripts used for Logtalk packaging, |
|---|
| 10 | installation, and integration with Prolog compilers. Those with extension |
|---|
| 11 | ".sh" are Bourne-compatible shells scripts for MacOS X, Linux, and similar |
|---|
| 12 | systems. Those with extension ".js" are JScript command-line scripts for |
|---|
| 13 | Windows; they require WSH 5.6 or later version to be installed and should |
|---|
| 14 | be run using cscript.exe from a DOS command line shell (you may download |
|---|
| 15 | WSH 5.6 from http://msdn.microsoft.com/downloads/list/webdev.asp). |
|---|
| 16 | |
|---|
| 17 | build_release.sh |
|---|
| 18 | helper script for building most of the distribution files of a new |
|---|
| 19 | Logtalk release |
|---|
| 20 | |
|---|
| 21 | cleandist.sh |
|---|
| 22 | script for cleaning a Logtalk distribution in preparation for packaging |
|---|
| 23 | |
|---|
| 24 | install.sh |
|---|
| 25 | shell script for installing Logtalk in a system-wide location for Unix |
|---|
| 26 | and Unix-like operating systems (must be run from this directory by a |
|---|
| 27 | user with administration privileges; accepts as an optional argument |
|---|
| 28 | a prefix for the installation directory: default is "/opt/local" on |
|---|
| 29 | Darwin, "/usr" on Debian systems, and "/usr/local" on other POSIX |
|---|
| 30 | systems, resulting in Logtalk being installed in "$prefix/share" with |
|---|
| 31 | useful scripts written to "$prefix/bin", which should be your path) |
|---|
| 32 | |
|---|
| 33 | uninstall.sh |
|---|
| 34 | shell script for de-installing Logtalk in Unix and Unix-like operating |
|---|
| 35 | systems (must be run from this directory by a user with administration |
|---|
| 36 | privileges) |
|---|
| 37 | |
|---|
| 38 | debian |
|---|
| 39 | directory containing support files for building a Debian package |
|---|
| 40 | (work in progress; experimental) |
|---|
| 41 | |
|---|
| 42 | linux |
|---|
| 43 | directory containing files used when building |
|---|
| 44 | |
|---|
| 45 | macosx |
|---|
| 46 | directory containing files used when building MacOS X installer |
|---|
| 47 | packages |
|---|
| 48 | |
|---|
| 49 | windows |
|---|
| 50 | directory containing files used when building Windows 2000/XP GUI |
|---|
| 51 | installers |
|---|
| 52 | |
|---|
| 53 | cplgtdirs.sh |
|---|
| 54 | cplgtdirs.js |
|---|
| 55 | end-user scripts for copying the Logtalk user-modifiable files and |
|---|
| 56 | directories to the location pointed by the environment variable |
|---|
| 57 | LOGTALKUSER (defaults to "~/logtalk" on POSIX operating-systems |
|---|
| 58 | and to "My Documents\Logtalk" on Windows when the variable is not |
|---|
| 59 | defined); must be run by the end-user in order to ensure proper |
|---|
| 60 | permissions for the copied files; the LOGTALKHOME environment |
|---|
| 61 | variable must be defined (pointing to the Logtalk installation |
|---|
| 62 | directory) |
|---|