Now also building a version of the .so with SSE support.

master
Thomas Goirand 2015-08-11 15:23:18 +02:00
parent b505099178
commit 6c3d8e552e
4 changed files with 30 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
gf-complete (1.0.2-2) unstable; urgency=medium
* Now also building a version of the .so with SSE support.
-- Thomas Goirand <zigo@debian.org> Tue, 11 Aug 2015 14:30:17 +0200
gf-complete (1.0.2-1) unstable; urgency=low
* Initial release (Closes: #750713).

View File

@ -1 +0,0 @@
do-not-use-sse-ac-ext.patch

24
debian/rules vendored
View File

@ -15,6 +15,30 @@ override_dh_auto_test:
#make check
echo "Not doing anything for now"
override_dh_autoreconf:
echo "Please don't do anything!"
override_dh_auto_configure:
echo "Please don't do anything!"
override_dh_auto_install:
patch -p1 <debian/do-not-use-sse-ac-ext.patch
dh_autoreconf
dh_auto_configure
dh_auto_build
dh_auto_install -Bdebian/tmp
dh_autoreconf_clean
patch -p1 -R <debian/do-not-use-sse-ac-ext.patch
dh_autoreconf
dh_auto_configure
dh_auto_build
dh_auto_install -Bdebian/tmp-with-sse
dh_autoreconf_clean
override_dh_auto_clean:
dh_auto_clean
rm -rf debian/tmp-with-sse
gen-orig-xz:
git tag -v $(GIT_TAG) || true
if [ ! -f ../$(DEBPKGNAME)_$(VERSION).orig.tar.xz ] ; then \