File: package.sh

package info (click to toggle)
guymager 0.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 932 kB
  • ctags: 1,580
  • sloc: cpp: 8,522; ansic: 2,571; makefile: 49; sh: 23
file content (16 lines) | stat: -rwxr-xr-x 424 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# package.sh - automated packaging in Guy's developer environment.
#
# You may use a command like
#   dpkg-buildpackage -B -uc -rfakeroot
# or similar instead

if [ -e ../../scripts/package.sh ]; then
   ../../scripts/package.sh guymager
else
   ../../../scripts/package.sh guymager # when called from the branches or tags directories
fi

./compileinfo.sh | grep Version | awk -F\" ' { print "Version "$2 } '