diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-04-06 11:40:52 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-04-08 14:15:42 -0700 |
commit | dc47003e5b183fafd5e0052f530a6bc44ca451fb (patch) | |
tree | f0f8dd6ca50727e54b6ac4e6c91cf835389907bc /packaging/ubuntu/make-package.sh | |
parent | 9f532edb67848a09f90639d4295e9dd3b918bea4 (diff) | |
download | subsurface-dc47003e5b183fafd5e0052f530a6bc44ca451fb.tar.gz |
Update the build rules for .deb based builds
With this we also give up on building daily builds on Ubuntu 12.04
The cmake based infrastructure very much assumes Qt5 at this point.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu/make-package.sh')
-rw-r--r-- | packaging/ubuntu/make-package.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 4942f85b7..3e00f578f 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -92,12 +92,14 @@ sed -i "s/${prev}/${rel}/g" debian/changelog debuild -S # and now for precise (precise can't build Qt5 based packages) -prev=vivid -rel=precise -sed -i "s/${prev}/${rel}/g" debian/changelog -cp debian/12.04.control debian/control -cp debian/12.04.rules debian/rules -debuild -S +# with the switch to cmake the amount of effort to build Qt4 packages +# on precise just doesn't seem worth it anymore +#prev=vivid +#rel=precise +#sed -i "s/${prev}/${rel}/g" debian/changelog +#cp debian/12.04.control debian/control +#cp debian/12.04.rules debian/rules +#debuild -S cd .. |