blob: 82fbf1b26eb7f736f1542685525507fd0a407ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/make -f
DEB_CABAL_PACKAGE = http-api-data
DEB_DEFAULT_COMPILER = ghc
# ghci is broken on armel (#839840)
ifeq (,$(filter $(DEB_BUILD_ARCH),armel))
DEB_ENABLE_TESTS = yes
else
DEB_ENABLE_TESTS = no
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
|