Advertisement
Guest User

Untitled

a guest
Nov 18th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.78 KB | None | 0 0
  1. #!/usr/bin/make -f
  2. # -*- makefile -*-
  3. # Sample debian/rules that uses debhelper.
  4. # This file was originally written by Joey Hess and Craig Small.
  5. # As a special exception, when this file is copied by dh-make into a
  6. # dh-make output file, you may use that output file without restriction.
  7. # This special exception was added by Craig Small in version 0.37 of dh-make.
  8.  
  9. # Uncomment this to turn on verbose mode.
  10. #export DH_VERBOSE=1
  11.  
  12. #%:
  13. #   dh $@
  14. confflags := \
  15.         --prefix=/usr \
  16.         --libdir=$(libdir) \
  17.         --mandir=\$${prefix}/share/man \
  18.         --with-apr=/usr/bin/apr-config \
  19.         --with-apr-util=/usr/bin/apu-config \
  20.         --with-berkeley-db=db.h:/usr/include:/usr/lib/x86_64-linux-gnu:db \
  21.         --with-gnome-keyring \
  22.         --with-openssl
  23. .PRONY: build binary clean binary-arch binary-indep
  24. build:
  25.     dh_testdir
  26.     ./autogen.sh
  27.     dh_auto_configure -- $(confflags)
  28.     dh_auto_build
  29.     dh_auto_test
  30. binary-arch:
  31.     dh_testdir
  32.     dh_testroot
  33.     dh_link -s
  34.     dh_installdocs -s
  35.     dh_installexamples -s
  36.     dh_installchangelogs -s CHANGES
  37.     dh_lintian -s
  38.     dh_fixperms -s
  39.     dh_strip -s
  40.     dh_compress -s
  41.     # dh_makeshlibs (1) creates shlibs/symbols files and (2) generates
  42.     # calls to 'ldconfig' in postinst/postrm.  We want (1) only for
  43.     # libsvn1, but (2) for the swig packages too.
  44.     dh_makeshlibs -s -Xjava -X_auth_ -X_ra_local -X_fs_
  45.     dh_perl -s
  46.     dh_python2 -s
  47.     dh_installdeb -s
  48.     dh_shlibdeps -s -X_auth_
  49.     dh_gencontrol -s
  50.     dh_md5sums -s
  51.     dh_builddeb -s
  52. binary-indep:
  53.     dh_testdir
  54.     dh_testroot
  55.     dh_link -i
  56.     dh_installdocs -i
  57.     dh_installexamples -i
  58.     dh_installman -i
  59.     dh_installchangelogs -i CHANGES
  60.     dh_lintian -i
  61.     dh_compress -i
  62.     dh_fixperms -i
  63.     dh_perl -i
  64.     dh_installdeb -i
  65.     dh_gencontrol -i
  66.     dh_md5sums -i
  67.     dh_builddeb -i
  68. binary: binary-arch binary-indep
  69. clean:
  70.     dh_testdir
  71.     dh_auto_clean
  72.     dh_clean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement