Mercurial > hg > quicktun
annotate debian/build.sh @ 0:65c01f57bdce V2.1.2
Initial commit
author | ivo <ivo@UFO-Net.nl> |
---|---|
date | Thu, 07 Oct 2010 15:53:01 +0200 |
parents | |
children | d2b0f399a9aa |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 VERSION=`cat ../version`-0 | |
3 ARCH=`dpkg --print-architecture` | |
4 rm -r data 2>/dev/null | |
5 cp -r static data | |
6 mkdir -p data/usr data/usr/sbin data/DEBIAN | |
7 sed "s/%ARCHITECTURE%/${ARCH}/" -i data/DEBIAN/control | |
8 sed "s/%VERSION%/${VERSION}/" -i data/DEBIAN/control | |
9 cp ../out/quicktun.debian data/usr/sbin/ | |
10 cp ../out/quicktun.keypair data/usr/sbin/ | |
11 fakeroot dpkg-deb --build data quicktun-${VERSION}_${ARCH}.deb | |
12 mv quicktun*.deb ../out/ |