summaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: ee6a3be8a6150d4a1616c9fa1178300347d08e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

include /usr/share/dpkg/architecture.mk

ifeq ($(DEB_BUILD_ARCH),armel)
	PLATFORM = --platform=armv7l
endif

%:
	dh ${@}

override_dh_auto_configure:
	dh_auto_configure -- \
		--prefix=/usr \
		--libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
		--includedir=/usr/include \
		--mandir=/usr/share/man \
		--cores=2 \
		--disable-sse $(PLATFORM)

override_dh_auto_test:
	$(MAKE) -j1 check