You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
#!/usr/bin/make -f
|
|
export DH_VERBOSE=1
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
include /usr/share/dpkg/default.mk
|
|
export ERL_COMPILER_OPTIONS=deterministic
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
if [ -e build_dep.tar.gz ] ; then tar xzf ./build_dep.tar.gz ; fi
|
|
rebar3 compile
|
|
rebar3 escriptize
|
|
rebar3 eunit
|
|
|
|
override_dh_clean:
|
|
dh_clean
|
|
rm -rf _build _checkouts
|
|
|