diff options
author | Victor Lowther <victor.lowther@gmail.com> | 2008-03-20 23:20:13 -0500 |
---|---|---|
committer | Victor Lowther <victor.lowther@gmail.com> | 2008-03-20 23:20:13 -0500 |
commit | 92458c3197b6f8101419ddbb813d5c8875763a76 (patch) | |
tree | 55002f5491a0641c3585acba4451969250e6b974 | |
parent | dfbfe5e573eb64c1f346bf24bccf19c0a7b9c0d1 (diff) |
Added a make-deb script to replce the patched test-pm-utils script.
-rwxr-xr-x | make-deb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/make-deb b/make-deb new file mode 100755 index 0000000..2a4df16 --- /dev/null +++ b/make-deb @@ -0,0 +1,12 @@ +#!/bin/bash +autoreconf --install && \ +./configure && \ +make dist && \ +for x in *.tar.gz; do + tar xzvf "$x"; + cd "${x%.tar.gz}"; + dpkg-buildpackage + cd .. +done +cp *.deb .. +git clean -f -x -d |