Advertisement
Guest User

Untitled

a guest
Jun 30th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.94 KB | None | 0 0
  1. #!/usr/bin/make -f
  2. # See debhelper(7) (uncomment to enable)
  3. # output every command that modifies files on the build system.
  4. #export DH_VERBOSE = 1
  5.  
  6.  
  7. # see FEATURE AREAS in dpkg-buildflags(1)
  8. #export DEB_BUILD_MAINT_OPTIONS = hardening=+all
  9.  
  10. # see ENVIRONMENT in dpkg-buildflags(1)
  11. # package maintainers to append CFLAGS
  12. #export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
  13. # package maintainers to append LDFLAGS
  14. #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
  15.  
  16. export QT_SELECT=qt5
  17. include /usr/share/dpkg/default.mk
  18.  
  19. %:
  20.     dh $@ --buildsystem=qmake
  21.  
  22. override_dh_auto_configure:
  23.     dh_auto_configure -- BINDIR=${DESTDIR}${PREFIX}/bin LIBDIR=${DESTDIR}${PREFIX}/lib VERSION=$(DEB_VERSION_UPSTREAM) BUILD_NUMBER=0 DaggyProject.pro
  24.  
  25. # dh_make generated override targets
  26. # This is example for Cmake (See https://bugs.debian.org/641051 )
  27. #override_dh_auto_configure:
  28. #   dh_auto_configure -- #  -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement