packages/ssoinabox-webui/build
author Dan Fuhry <dan@fuhry.us>
Fri, 18 Jan 2013 19:59:50 -0500
changeset 5 cdd708efa505
parent 0 3906ca745819
permissions -rwxr-xr-x
Apparently Ubuntu switched the location of Kerberos files?

#!/bin/bash
# :mode=shellscript:
set -e

#oldcwd="`pwd`"

#mkdir root

#cd /
#tar c \
#	--exclude=\*~ \
#	--exclude=usr/local/share/ssoinabox/htdocs/includes/templates/compiled \
#	-f - \
#	etc/cron.d/ssoinabox \
#	usr/local/share/ssoinabox \
#	usr/local/share/weblogin/ssoinabox \
#	| \
#		tar xCf "$oldcwd/root" -

#cd "$oldcwd"
cp -a DEBIAN root/
cd root
version="`cat DEBIAN/control | grep ^Version: | sed -re 's/^Version: //'`"
pkgname="`cat DEBIAN/control | grep ^Package: | sed -re 's/^Package: //'`"
arch="`cat DEBIAN/control | grep ^Architecture: | sed -re 's/^Architecture: //'`"

find . -name \*~ | xargs rm -f

dpkg -b . ../${pkgname}_${version}_${arch}.deb

rm -rf root/DEBIAN