summaryrefslogtreecommitdiffstats
path: root/development/gnustep-startup/README
diff options
context:
space:
mode:
author Ryan P.C. McQuen2014-11-05 12:33:32 +0100
committer Willy Sudiarto Raharjo2014-11-08 00:30:11 +0100
commitf89de4ce60a3ad5ab192507ed30000220b0c6d51 (patch)
treedb5f8caf7074b32016938767b796886f0028f3b8 /development/gnustep-startup/README
parent60c75ff791ce88fe9bddede4997aa2c6dfea5e64 (diff)
downloadslackbuilds-f89de4ce60a3ad5ab192507ed30000220b0c6d51.tar.gz
development/gnustep-startup: Added (GNUstep core packages).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/gnustep-startup/README')
-rw-r--r--development/gnustep-startup/README35
1 files changed, 35 insertions, 0 deletions
diff --git a/development/gnustep-startup/README b/development/gnustep-startup/README
new file mode 100644
index 0000000000..181a1baca1
--- /dev/null
+++ b/development/gnustep-startup/README
@@ -0,0 +1,35 @@
+GNUstep is a free, object-oriented, cross-platform development environment
+that strives for simplicity and elegance. GNUstep is based on and completely
+compatible with the OpenStep specification developed by NeXT (now Apple
+Computer Inc.) as well as implementing the extensions added by Apple in the
+form of Cocoa.
+
+The GNUstep Startup package combines all four core packages (Make, Base,
+GUI and Backend), plus ffcall.
+
+This is the message after compiling from source, because the files
+are then put in a package you will miss it:
+
+
+---------------------------------------------------------
+
+Installation Finished
+
+---------------------------------------------------------
+
+Now run the GNUstep initialization script (put this in your
+.bashrc or other type of startup script). Note the '.' at the
+beginning of the line.
+. /opt/gnustep/System/Library/Makefiles/GNUstep.sh
+
+Now you can install some applications and start using GNUstep
+Look for a few applications in the AppSources directory. The
+typical way to install an application is:
+ tar -zxf MyApplication.tar.gz
+ cd MyApplication
+ make
+ make install (as root, unless GNUstep is in your home dir)
+
+Then start the application:
+ openapp MyApplication.app
+---------------------------------------------------------