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
a198f14e
Commit
a198f14e
authored
Jan 15, 2009
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new Linux script for limited install
Actually made Linux compile with optimizations
parent
d72ca762
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
3 deletions
+44
-3
configure.ac
configure.ac
+0
-2
tools/linux-installer/tarball
tools/linux-installer/tarball
+1
-1
tools/linux-installer/tarball-limited
tools/linux-installer/tarball-limited
+43
-0
No files found.
configure.ac
View file @
a198f14e
...
@@ -15,8 +15,6 @@ AM_INIT_AUTOMAKE([-Wall foreign])
...
@@ -15,8 +15,6 @@ AM_INIT_AUTOMAKE([-Wall foreign])
# Checks for programs.
# Checks for programs.
AC_PROG_CXX
AC_PROG_CXX
# Do not pass -O2, because that causes failures for now.
CXXFLAGS=-g
# Checks for libraries.
# Checks for libraries.
AC_CHECK_LIB([hunspell],[Hunspell_create])
AC_CHECK_LIB([hunspell],[Hunspell_create])
...
...
tools/linux-installer/tarball
View file @
a198f14e
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
mkdir
magicseteditor
mkdir
magicseteditor
mkdir
magicseteditor/program
mkdir
magicseteditor/program
cp
-rP
../../data
/usr/local/share/
magicseteditor/resource ../../magicseteditor magicseteditor/program
;
cp
-rP
../../data
~/.
magicseteditor/resource ../../magicseteditor magicseteditor/program
;
cp install
README magicseteditor
;
cp install
README magicseteditor
;
tar
-cf
magicseteditor.tar.gz
--owner
root
--exclude
=
.
*
--exclude
=
*
~
--exclude
=
.svn magicseteditor
;
tar
-cf
magicseteditor.tar.gz
--owner
root
--exclude
=
.
*
--exclude
=
*
~
--exclude
=
.svn magicseteditor
;
...
...
tools/linux-installer/tarball-limited
0 → 100755
View file @
a198f14e
#!/bin/bash
# Magic Set Editor installer tarball generator.
rm
-rf
magicseteditor
mkdir
magicseteditor
mkdir
magicseteditor/program
mkdir
magicseteditor/program/data
PACKAGES
=
"magic.mse-game
magic-blends.mse-include
magic-default-image.mse-include
magic-watermarks.mse-include
magic-future-common.mse-include
magic-spoiler.mse-export-template
magic-mana-small.mse-symbol-font
magic-mana-large.mse-symbol-font
magic-new.mse-style
magic-new-flip.mse-style
magic-new-split.mse-style
magic-textless.mse-style
magic-old.mse-style
magic-old-split.mse-style
vs.mse-game
vs-common.mse-include
vs-standard-arrow.mse-symbol-font
vs-standard-official.mse-symbol-font
vs-spoiler.mse-export-template
vs-standard.mse-style
yugioh.mse-game
yugioh-standard-levels.mse-symbol-font
yugioh-text-replacements.mse-symbol-font
yugioh-standard.mse-style"
;
for
PACKAGE
in
$PACKAGES
;
do
cp
-rP
../../data/
$PACKAGE
magicseteditor/program/data
;
done
;
cp
-rP
~/.magicseteditor/resource ../../magicseteditor magicseteditor/program
;
cp install
README magicseteditor
;
tar
-cf
magicseteditor-limited.tar.gz
--owner
root
--exclude
=
.
*
--exclude
=
*
~
--exclude
=
.svn magicseteditor
;
rm
-rf
magicseteditor
;
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