-
Notifications
You must be signed in to change notification settings - Fork 4
/
make_deb_win64
executable file
·66 lines (52 loc) · 1.6 KB
/
make_deb_win64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash
# dependencies:
# wpkg
# gzip
# pandoc
RELEASE=bin-release
ARCHITECTURE=win64
DEBVER=1.0.0
BASE=as3shebang_${DEBVER}_${ARCHITECTURE}
ROOTDIR=$RELEASE/$BASE
rm -Rf $RELEASE
mkdir -p $ROOTDIR
DIST=`pwd`/$ROOTDIR
DEST=$DIST/usr
# note:
# for Cygwin
# /usr/bin -> /bin
# /usr/lib -> /lib
mkdir -p $DIST/bin
mkdir -p $DEST/share/man/man1
chmod 775 $DIST
find $DIST -type d | xargs chmod -R 755
# make abc
java -jar build/asc.jar -AS3 -optimize -import lib-abc/redtamarin.abc src/as3shebang.as
mv src/as3shebang.abc bin-release/
# make projector
./redshell_dd_win64.exe projectormake.abc -- -o bin-release/as3shebang.exe redshell_dd_win64.exe bin-release/as3shebang.abc -- -Dlanguage en
cp $RELEASE/as3shebang.exe $DIST/bin/
chmod 755 $DIST/bin/as3shebang.exe
# no ownership under Cygwin
# chown root:root $DIST/bin/as3shebang.exe
# make man
pandoc build/as3shebang.1.md -s -t man -o bin-release/as3shebang.1
cp $RELEASE/as3shebang.1 $DEST/share/man/man1/as3shebang.1
gzip -9 $DEST/share/man/man1/as3shebang.1
chmod 644 $DEST/share/man/man1/as3shebang.1.gz
# no ownership under Cygwin
# chown root:root $DEST/share/man/man1/as3shebang.1.gz
INSTALLED_SIZE=$(du -k -s $DEST | awk '{print $1}')
mkdir $DIST/DEBIAN
perl -pe "s/VERSION/$DEBVER/" build/windows/control.in | \
perl -pe "s/ARCHITECTURE/$ARCHITECTURE/" | \
perl -pe "s/INSTALLED_SIZE/$INSTALLED_SIZE/" \
> $DIST/DEBIAN/control
# note:
# for Wpkg
# we need to build the deb package
# from the current /bin-release directory
# eg. wpkg -b something_1.0.0_win64
# this wpkg -b /bin-release/something_1.0.0_win64 will not work
cd $RELEASE
wpkg --build $BASE