Skip to content

Commit 1012347

Browse files
committed
Build script cleanup
Removed the build-mac script, since that build is done manually in Xcode now; created a new, separate build script for the 'mac' and 'nologo' upstream packages.
1 parent 9ee3f4d commit 1012347

File tree

3 files changed

+13
-62
lines changed

3 files changed

+13
-62
lines changed

build-gtk

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
#!/bin/sh -e
22

3-
# This script builds the GTK version, and upstream source package.
4-
# If the -u option is specified, skips creation of the upstream package.
5-
6-
if [ $# -ge 1 -a "$1" = "-u" ]
7-
then
8-
SKIP_UPSTREAM=1
9-
shift
10-
else
11-
SKIP_UPSTREAM=0
12-
fi
3+
# This script builds the GTK version.
134

145
PKGNAME=Free42`uname -s`
156

@@ -47,12 +38,3 @@ strip $PKGNAME/free42dec
4738
mkdir -p packages
4839
tar cvfz packages/$PKGNAME.tgz $PKGNAME
4940
rm -rf $PKGNAME
50-
51-
# "Upstream" source package, for Fedora and other package builders.
52-
# Has all non-GTK versions, and all skins containing the HP logo, removed.
53-
if [ $SKIP_UPSTREAM -eq 0 ]
54-
then
55-
cd upstream
56-
sh ./build-nologo
57-
cd ..
58-
fi

build-mac

Lines changed: 0 additions & 43 deletions
This file was deleted.

build-upstream

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh -e
2+
3+
# "Upstream" source packages for Linux and MacPorts.
4+
# They have all non-applicable versions, and all skins containing the HP logo,
5+
# removed.
6+
7+
mkdir -p packages
8+
9+
cd upstream
10+
sh ./build-macports
11+
sh ./build-nologo
12+
cd ..

0 commit comments

Comments
 (0)