Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
54d6ae31
Commit
54d6ae31
authored
May 22, 2007
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Linux tarball and install scripts, and a README file.
parent
54c92cc5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
0 deletions
+64
-0
tools/linux-installer/README
tools/linux-installer/README
+10
-0
tools/linux-installer/install
tools/linux-installer/install
+44
-0
tools/linux-installer/tarball
tools/linux-installer/tarball
+10
-0
No files found.
tools/linux-installer/README
0 → 100644
View file @
54d6ae31
In order to use Magic Set Editor, you need to have libraries for wxGTK version 2.8. This can be acquired from the Ubuntu package libwxgtk2.8-0.
To install Magic Set Editor, please extract this tarball if you haven't already, and then run the install script as root.
Unfortunately, Magic Set Editor currently requires that it be installed to /usr/local/share/magicseteditor.
If, after Magic Set Editor is installed, it complains about being unable to find data in a certain path, then your system
is slightly different, and should be installed to that directory, minus the "/data". This can be done by modifying the install script.
After the install script is run and loading is confirmed, you may delete all the contents of this tarball if you wish.
Magic Set Editor stores data only in the primary installation directory and in ~/.magicseteditor.
If you need to uninstall, removing these directories should completely purge your system.
\ No newline at end of file
tools/linux-installer/install
0 → 100755
View file @
54d6ae31
#!/bin/bash
# Magic Set Editor 2 beta.
# This script and this program are licensed under the GNU General Public License Version 2
# The full text of this license is in the file COPYING
# This script installs Magic Set Editor onto your system.
# If executed as root (including via sudo), it is installed to /usr/local/share/magicseteditor. (with an executable symlink in /usr/local/bin)
# If executed as any other user, it will fail.
$VERSION
=
0.3.3
case
`
id
-un
`
in
root
)
INSTALL_DIR
=
'/usr/local/share/magicseteditor/'
;
EXEC_SYMLINK
=
'/usr/local/bin/magicseteditor'
;;
*
)
echo
"Unfortunately, our installer system currently does not support installation except as root.
This is because the program currently requires a specific data directory.
Our apologies."
&&
exit
;;
esac
echo
"Magic Set Editor version
$VERSION
Installer Script.
Magic Set Editor will be installed to
$INSTALL_DIR
.
A symbolic link to the executable will be put at
$EXEC_SYMLINK
.
Is this correct [y/N]? "
;
read
-n
1 CONFIRM
;
case
$CONFIRM
in
[
yY]
)
:
;;
*
)
exit
;;
esac
;
echo
"Installing..."
;
mkdir
"
$INSTALL_DIR
"
;
cp
-r
program/
*
"
$INSTALL_DIR
"
;
ln
-s
"
$INSTALL_DIR
/magicseteditor"
"
$EXEC_SYMLINK
"
tools/linux-installer/tarball
0 → 100755
View file @
54d6ae31
#!/bin/bash
# Magic Set Editor installer tarball generator.
mkdir
program
cp
-rP
../../data ../../src/resource ../../magicseteditor program
;
tar
-cf
magicseteditor.tar.gz
--owner
root
--exclude
=
.
*
--exclude
=
*
~
--exclude
=
.svn program
install
README
;
rm
-rf
program
;
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment