Skip to content

Commit a36460a

Browse files
authored
Reorganizing packaging and tools (#11)
* Added tools and packaging directories * Made cleanup.sh and bootstrap.sh safer
1 parent 27996be commit a36460a

File tree

39 files changed

+56
-121
lines changed

39 files changed

+56
-121
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packaging/deb.*

bootstrap.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/bash
22

3+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4+
5+
pushd $DIR > /dev/null 2>&1
6+
37
aclocal
48
autoconf
59
autoheader
610
automake --add-missing
11+
12+
popd > /dev/null 2>&1

cleanup.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/bash
22

3+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4+
5+
pushd $DIR > /dev/null 2>&1
6+
37
## let the Makefile help us some
48
test -f Makefile && make distclean
59

@@ -23,6 +27,8 @@ rm -rf Makefile.in \
2327
include/Makefile.in
2428

2529
## remove (maybe) some other generated files
26-
rm -rf deb
30+
rm -rf packaging/deb
2731
rm -rf cpuaff*.tar.gz
28-
rm -rf deb.*
32+
rm -rf packaging/deb.*
33+
34+
popd > /dev/null 2>&1

debian.debian/changelog

Lines changed: 0 additions & 35 deletions
This file was deleted.

debian.zesty/compat

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian.zesty/control

Lines changed: 0 additions & 14 deletions
This file was deleted.

debian.zesty/copyright

Lines changed: 0 additions & 28 deletions
This file was deleted.

debian.zesty/rules

Lines changed: 0 additions & 32 deletions
This file was deleted.

debian.zesty/source/format

Lines changed: 0 additions & 1 deletion
This file was deleted.

generate_doc

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)