Codebase list turing / 61e4c5b
customized debian/rules Georges Khaznadar 6 years ago
1 changed file(s) with 4 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
00 #!/usr/bin/make -f
1 # See debhelper(7) (uncomment to enable)
2 # output every command that modifies files on the build system.
3 #export DH_VERBOSE = 1
4
5
6 # see FEATURE AREAS in dpkg-buildflags(1)
7 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all
8
9 # see ENVIRONMENT in dpkg-buildflags(1)
10 # package maintainers to append CFLAGS
11 #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
12 # package maintainers to append LDFLAGS
13 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
14
15
161 %:
172 dh $@ --with python3
183
194
5 DESTDIR = $(CURDIR)/debian/turing
6 override_dh_auto_install:
7 dh_auto_install
8 find $(DESTDIR)/usr/share/turing/src/tools -name "*.sh" -o -name "*.bat" | xargs rm
209
21 # dh_make generated override targets
22 # This is example for Cmake (See https://bugs.debian.org/641051 )
23 #override_dh_auto_configure:
24 # dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
2510