-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60155a2
commit 45e6f58
Showing
5 changed files
with
58 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
#!/bin/bash | ||
|
||
#cleanup cache for correct versioning when run multiple times | ||
rm -rf autom4te.cache | ||
|
||
aclocal -I m4 | ||
autoconf | ||
autoheader | ||
automake --add-missing | ||
autoreconf -i | ||
./configure "$@" | ||
olddir=`pwd` | ||
srcdir=`dirname $0` | ||
test -z "$srcdir" && srcdir=. | ||
|
||
( | ||
cd "$srcdir" | ||
|
||
#cleanup cache for correct versioning when run multiple times | ||
rm -rf autom4te.cache | ||
|
||
gprefix=`which glibtoolize 2>&1 >/dev/null` | ||
if [ $? -eq 0 ]; then | ||
glibtoolize --force | ||
else | ||
libtoolize --force | ||
fi | ||
aclocal -I m4 | ||
autoheader | ||
automake --add-missing | ||
autoconf | ||
|
||
cd "$olddir" | ||
) | ||
|
||
if [ -z "$NOCONFIGURE" ]; then | ||
$srcdir/configure "$@" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Package: libgeneral-dev | ||
Version: @DEB_VERSION@ | ||
Architecture: @DEB_ARCH@ | ||
Conflicts: libgeneral (<< @DEB_VERSION@) | ||
Depends: libgeneral0 (>= @DEB_VERSION@) | ||
Section: Development | ||
Priority: optional | ||
Description: Common library for tihmstar tools (Development files) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Package: libgeneral0 | ||
Version: @DEB_VERSION@ | ||
Architecture: @DEB_ARCH@ | ||
Conflicts: libgeneral (<< 1:0) | ||
Replaces: libgeneral (<< 1:0) | ||
Provides: libgeneral (= @DEB_VERSION@) | ||
Section: Libraries | ||
Priority: optional | ||
Description: Common library for tihmstar tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters