forked from Samsung/ONE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules
More file actions
37 lines (27 loc) · 644 Bytes
/
rules
File metadata and controls
37 lines (27 loc) · 644 Bytes
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
32
33
34
35
36
37
#!/usr/bin/make -f
export NNCC_INSTALL_PREFIX=$(CURDIR)
export DEBIAN_PREFIX=$(CURDIR)/debian/tmp
%:
dh $@
override_dh_auto_clean:
# Nothing to clean
true
override_dh_auto_configure:
# No configure step needed
true
override_dh_auto_build:
# No build step needed
true
override_dh_auto_test:
# No test step needed
true
override_dh_auto_install:
# copy the bin file
mkdir -p ${DEBIAN_PREFIX}/bin
cp ${NNCC_INSTALL_PREFIX}/onnx2circle ${DEBIAN_PREFIX}/bin/
override_dh_shlibdeps:
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
override_dh_strip:
dh_strip --no-automatic-dbgsym
override_dh_builddeb:
dh_builddeb