summaryrefslogtreecommitdiff
path: root/builds
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-09 21:28:46 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-09 21:28:46 +0000
commita8bd6f63267fd84d2df6dede6d36935f604ce688 (patch)
tree0f9a0be9a6545b3606df0d64b4e2577e10625380 /builds
parent845756cad921fa6cd443fdad1b45c652e33281c6 (diff)
Sigh; we need per-release debian directories and scripts, it seems.
Diffstat (limited to 'builds')
-rwxr-xr-xbuilds/deb17
1 files changed, 0 insertions, 17 deletions
diff --git a/builds/deb b/builds/deb
deleted file mode 100755
index 5425f6da9..000000000
--- a/builds/deb
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-./waf dist
-rm -rf build/deb
-mkdir build/deb
-cd build/deb
-mv ../../*.tar.bz2 .
-TARBALL=`ls -1 *.tar.bz2`
-DEB_TARBALL=`echo $TARBALL | sed -e "s/dvdomatic-/dvdomatic_/" | sed -e "s/.tar.bz2/.orig.tar.bz2/"`
-echo "Renaming $TARBALL to $DEB_TARBALL"
-mv $TARBALL $DEB_TARBALL
-tar xjf $DEB_TARBALL
-cd dvdomatic-*
-dpkg-source -b .
-dpkg-buildpackage
-cp ../*.deb ../../../
-