equal
deleted
inserted
replaced
1 #!/usr/bin/make -f |
|
2 # See debhelper(7) (uncomment to enable) |
|
3 # output every command that modifies files on the build system. |
|
4 DH_VERBOSE = 1 |
|
5 export PERL5LIB= |
|
6 export PERL_MM_OPT= |
|
7 export PERL_MB_OPT= |
|
8 |
|
9 # see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/* |
|
10 DPKG_EXPORT_BUILDFLAGS = 1 |
|
11 include /usr/share/dpkg/default.mk |
|
12 |
|
13 # see FEATURE AREAS in dpkg-buildflags(1) |
|
14 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all |
|
15 |
|
16 # see ENVIRONMENT in dpkg-buildflags(1) |
|
17 # package maintainers to append CFLAGS |
|
18 #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic |
|
19 # package maintainers to append LDFLAGS |
|
20 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed |
|
21 |
|
22 |
|
23 # main packaging script based on dh7 syntax |
|
24 %: |
|
25 dh $@ |
|
26 |
|
27 # debmake generated override targets |
|
28 # This is example for Cmake (See http://bugs.debian.org/641051 ) |
|
29 #override_dh_auto_configure: |
|
30 # dh_auto_configure -- \ |
|
31 # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) |
|
32 |
|
33 override_dh_installchangelogs: |
|
34 dh_installchangelogs CHANGES |
|