Advertisement
Guest User

Untitled

a guest
Jul 12th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. APPNAME=remotedevicecontroller
  2. install:
  3. install config.xml /etc/${APPNAME}.conf.xml
  4. install devices.rules /etc/udev/rules.d/${APPNAME}.rules
  5. install error.log /var/log/${APPNAME}.log
  6. install init.conf /etc/init/${APPNAME}.conf
  7. install init.d /etc/init.d/${APPNAME}
  8. install ${CND_ARTIFACT_NAME_${CONF}} /usr/local/bin/${APPNAME}
  9. chmod u+x ${CND_ARTIFACT_NAME_${CONF}}
  10. ./${CND_ARTIFACT_NAME_${CONF}} -i
  11.  
  12. $ dpkg-buildpackage -rfakeroot
  13. dpkg-buildpackage: source package remotedevicecontroller
  14. dpkg-buildpackage: source version 1.0-1
  15. dpkg-buildpackage: source changed by satya gowtham kudupudi (gowtham) <gowthamk@newmeksolutions.com>
  16. dpkg-buildpackage: host architecture i386
  17. dpkg-source --before-build remotedevicecontroller-1.0
  18. fakeroot debian/rules clean
  19. dh clean
  20. dh: No packages to build.
  21. dpkg-source -b remotedevicecontroller-1.0
  22. dpkg-source: info: using source format `3.0 (quilt)'
  23. dpkg-source: info: building remotedevicecontroller using existing ./remotedevicecontroller_1.0.orig.tar.gz
  24. dpkg-source: info: building remotedevicecontroller in remotedevicecontroller_1.0-1.debian.tar.gz
  25. dpkg-source: info: building remotedevicecontroller in remotedevicecontroller_1.0-1.dsc
  26. debian/rules build
  27. dh build
  28. dh: No packages to build.
  29. fakeroot debian/rules binary
  30. dh binary
  31. dh: No packages to build.
  32. signfile remotedevicecontroller_1.0-1.dsc
  33.  
  34. You need a passphrase to unlock the secret key for
  35. user: "satya gowtham kudupudi (gowtham) <gowthamk@newmeksolutions.com>"
  36. 2048-bit RSA key, ID 9A2853A0, created 2013-08-22
  37.  
  38. gpg: gpg-agent is not available in this session
  39.  
  40. dpkg-genchanges >../remotedevicecontroller_1.0-1_i386.changes
  41. dpkg-genchanges: error: cannot read files list file: No such file or directory
  42. dpkg-buildpackage: error: dpkg-genchanges gave error exit status 2
  43.  
  44. %:
  45. dh $@
  46.  
  47. %:
  48. dh $@
  49.  
  50. dh runs a sequence of debhelper commands. The supported sequences
  51. correspond to the targets of a debian/rules file: build-arch, build-
  52. indep, build, clean, install-indep, install-arch, install, binary-arch,
  53. binary-indep, and binary.
  54.  
  55. dh binary-arch --no-act
  56.  
  57. Source: hello
  58. Section: devel
  59. Priority: optional
  60. Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
  61. XSBC-Original-Maintainer: Jane Doe <packager@example.com>
  62. Standards-Version: 3.9.1
  63. Build-Depends: debhelper (>= 7)
  64. Homepage: http://www.gnu.org/software/hello/
  65.  
  66. Package: hello
  67. Architecture: any
  68. Depends: ${shlibs:Depends}
  69. Description: The classic greeting, and a good example
  70. The GNU hello program produces a familiar, friendly greeting. It
  71. allows non-programmers to use a classic computer science tool which
  72. would otherwise be unavailable to them. Seriously, though: this is
  73. an example of how to do a Debian package. It is the Debian version of
  74. the GNU Project's `hello world' program (which is itself an example
  75. for the GNU Project).
  76.  
  77. APPNAME=remotedevicecontroller
  78. install:
  79. install config.xml ${DESTDIR}/etc/${APPNAME}.conf.xml
  80. install devices.rules ${DESTDIR}/etc/udev/rules.d/${APPNAME}.rules
  81. install error.log ${DESTDIR}/var/log/${APPNAME}.log
  82. install init.conf ${DESTDIR}/etc/init/${APPNAME}.conf
  83. install init.d ${DESTDIR}/etc/init.d/${APPNAME}
  84. install ${CND_ARTIFACT_NAME_${CONF}} ${DESTDIR}/usr/local/bin/${APPNAME}
  85. chmod u+x ${CND_ARTIFACT_NAME_${CONF}}
  86. ./${CND_ARTIFACT_NAME_${CONF}} -i
  87.  
  88. override_dh_auto_test:
  89. %:
  90. dh clean
  91. dh binary
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement