diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-04-07 22:30:31 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-25 12:41:07 (GMT) |
commit | b997b3cdc0ebd32e8be97e5c6265c6c15de7706a (patch) | |
tree | 3d8123cc93163d763511a996c4f5921efdbb176b /Swift/Packaging/Debian/package.sh | |
parent | c47d084c27bb92ad861a75538f9eafa8a232b88c (diff) | |
download | swift-contrib-b997b3cdc0ebd32e8be97e5c6265c6c15de7706a.zip swift-contrib-b997b3cdc0ebd32e8be97e5c6265c6c15de7706a.tar.bz2 |
Improvements to Debian packaging.
Allows packaging of just source, and script for using pbuilder.
Adding build-arch and build-indep targets to satisfy lintian
Fix caps on Olly's surname in Debian packaging
Add script to build with non-generated changelog
Diffstat (limited to 'Swift/Packaging/Debian/package.sh')
-rwxr-xr-x | Swift/Packaging/Debian/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Packaging/Debian/package.sh b/Swift/Packaging/Debian/package.sh index b825d2f..1edc4a0 100755 --- a/Swift/Packaging/Debian/package.sh +++ b/Swift/Packaging/Debian/package.sh @@ -72,7 +72,7 @@ fi # Detect dependencies WEBKIT_DEPENDENCY=", libqtwebkit-dev (>= 2.0.0)" DISTRIBUTION=`lsb_release -s -i`-`lsb_release -s -c` -if [ "$DISTRIBUTION" = "Debian-squeeze" -o "$DISTRIBUTION" = "Ubuntu-lucid" ]; then +if [ "$DISTRIBUTION" = "Debian-squeeze" -o "$DISTRIBUTION" = "Ubuntu-lucid" -o ! -z "$SWIFT_FORCE_LUCID" ]; then WEBKIT_DEPENDENCY="" fi |