|
Revision 61d67c4d61882188b93f17d901298454dd243ca7, 0.5 KB
(checked in by Lincoln de Sousa <lincoln@…>, 15 months ago)
|
|
fixing python layout, part 1
remove wrappers in sh
create package, add init.py
rename guake_globals.py -> globals.py
so now it becomes guake.globals submodule in guake package
bump required python version up to 2.5.0, as of that version onwards
python supports absolute imports which are required for this to work
|
-
Property mode set to
100755
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # Run this to generate all the initial makefiles, etc. |
|---|
| 3 | |
|---|
| 4 | srcdir=`dirname $0` |
|---|
| 5 | test -z "$srcdir" && srcdir=. |
|---|
| 6 | |
|---|
| 7 | PKG_NAME="guake" |
|---|
| 8 | |
|---|
| 9 | (test -f $srcdir/src/guake) || { |
|---|
| 10 | echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" |
|---|
| 11 | echo " top-level $PKG_NAME directory" |
|---|
| 12 | exit 1 |
|---|
| 13 | } |
|---|
| 14 | |
|---|
| 15 | which gnome-autogen.sh || { |
|---|
| 16 | echo "You need to install gnome-common from GNOME SVN and make" |
|---|
| 17 | echo "sure the gnome-autogen.sh script is in your \$PATH." |
|---|
| 18 | exit 1 |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh $@ |
|---|