1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/make -f
PLATFORM :=
$(call lazy,DEB_HOST_ARCH,$$(shell dpkg-architecture -qDEB_HOST_ARCH))
ifneq (,$(findstring armhf,$(DEB_HOST_ARCH)))
PLATFORM += --platform=armv7l
endif
override_dh_auto_configure:
./configure \
--includedir=/usr/include \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
--mandir=/usr/share/man \
--prefix=/usr \
--cores=2 \
--disable-sse \
$(PLATFORM)
override_dh_auto_test:
make -j1 check
%:
dh $@
# The build target must not be empty. Sadly because of how make
# works, we have do duplicate the target in this case.
build:
dh $@
.PHONY: build
|