#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1

# 바이너리 패키지이므로 컴파일/스트립 과정 생략 (시간 단축 및 오류 방지)
override_dh_auto_build:
override_dh_dwz:
override_dh_strip:
override_dh_shlibdeps:
override_dh_strip_nondeterminism:

%:
	dh $@

override_dh_auto_install:
	./install.sh --destdir=$(CURDIR)/debian/rust-custom --prefix=/usr --disable-ldconfig
