JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
generate a port while running release
[spectrwm.git] / release.sh
1 #!/bin/ksh
2 #
3 # $scrotwm$
4
5 PREFIX=scrotwm-
6 DIRS="lib linux"
7 FILES="Makefile baraction.sh initscreen.sh screenshot.sh scrotwm.1 scrotwm_es.1 scrotwm_it.1 scrotwm.c scrotwm.conf linux/Makefile linux/linux.c linux/util.h lib/Makefile lib/shlib_version lib/swm_hack.c"
8
9 if [ -z "$1" ]; then
10         echo "usage: release.sh <version>"
11         exit 1
12 fi
13
14 if [ -d "$PREFIX$1" ]; then
15         echo "$PREFIX$1 already exists"
16         exit 1
17 fi
18
19 if [ -d "$PREFIX$1-port" ]; then
20         echo "$PREFIX$1 already exists"
21         exit 1
22 fi
23
24 TARGET="$PREFIX$1"
25 mkdir $TARGET
26
27 for i in $DIRS; do
28         mkdir "$TARGET/$i"
29 done
30
31 for i in $FILES; do
32         cp $i "$TARGET/$i"
33 done
34
35 tar zcf $TARGET.tgz $TARGET
36
37 # make port
38 PORT="$PREFIX$1-port"
39 mkdir $PORT
40
41 # Makefile
42 cat port/Makefile | sed "s/SCROTWMVERSION/$1/g" > $PORT/Makefile
43
44 # distinfo
45 md5 $TARGET.tgz > $PORT/distinfo
46 rmd160 $TARGET.tgz >> $PORT/distinfo
47 sha1 $TARGET.tgz >> $PORT/distinfo
48 cksum -a sha256 $TARGET.tgz >> $PORT/distinfo
49 wc -c $TARGET.tgz 2>/dev/null | awk '{print "SIZE (" $2 ") = " $1}' >> $PORT/distinfo
50
51 # pkg
52 mkdir $PORT/pkg
53 cp port/pkg/DESCR $PORT/pkg/
54 cp port/pkg/PFRAG.shared $PORT/pkg/
55 cp port/pkg/PLIST $PORT/pkg/
56
57 # patches
58 mkdir $PORT/patches
59 cp port/patches/patch-scrotwm_c $PORT/patches/
60 cp port/patches/patch-scrotwm_conf $PORT/patches/
61
62 # make diff
63 diff -ruNp -x CVS /usr/ports/x11/scrotwm/ $PORT > $TARGET.diff