Strange result to packaging qt application(ubuntu) -


i want packaging qt5 application on ubuntu.

i'm refer http://blog.naver.com/postview.nhn?blogid=hseok74&logno=120193947673

it looks smoothly.

but it's happen problem @ step 8

kkangji@kkangji-hp-z820-workstation:~/바탕화면$ dpkg --contents minicam_1.0-1_amd64.deb   drwxr-xr-x root/root         0 2013-08-16 13:35 ./ drwxr-xr-x root/root         0 2013-08-16 13:35 ./usr/ drwxr-xr-x root/root         0 2013-08-16 13:35 ./usr/bin/ drwxr-xr-x root/root         0 2013-08-16 13:35 ./usr/share/ drwxr-xr-x root/root         0 2013-08-16 13:35 ./usr/share/doc/ drwxr-xr-x root/root         0 2013-08-16 13:35 ./usr/share/doc/minicam/ -rw-r--r-- root/root       174 2013-08-16 13:31 ./usr/share/doc/minicam/changelog.debian.gz -rw-r--r-- root/root       251 2013-08-14 16:22 ./usr/share/doc/minicam/readme.txt -rw-r--r-- root/root       173 2013-08-16 13:31 ./usr/share/doc/minicam/readme.debian -rw-r--r-- root/root      1483 2013-08-16 13:31 ./usr/share/doc/minicam/copyright lrwxrwxrwx root/root         0 2013-08-16 13:35 ./usr/bin/app_name ->  ../share/minicam/bin/app_name 

libraries , .run file missing on package.

what should do?

-----------rules-------------

#!/usr/bin/make -f # sample debian/rules uses debhelper. # file public domain software, written joey hess.  # # version packages architecture dependent.  # uncomment turn on verbose mode. #export dh_verbose=1  build: build-stamp build-stamp:         dh_testdir   # add here commands compile package.  #qmake-qt4 -config release         /home/kkangji/qt5.1.0/5.1.0/gcc_64/bin/qmake -config release         make          touch build-stamp clean:         dh_testdir         dh_testroot         rm -f build-stamp          # add here commands clean after build process.         #$(make) clean         #$(make) distclean         dh_clean  install: build         dh_testdir         dh_testroot         dh_prep         dh_installdirs   # add here commands install package debian/<packagename>         make install_root=`pwd`/debian/project install         mkdir -p `pwd`/debian/project/usr/bin/         ln -sf /usr/share/project/bin/app_name `pwd`/debian/project/usr/bin/app_name  # build architecture-independent files here. binary-indep: build install # have nothing default.  # build architecture-dependent files here. binary-arch: build install         dh_testdir         dh_testroot         dh_installchangelogs         dh_installdocs         dh_installexamples         dh_installman         dh_link         dh_strip         dh_compress         dh_fixperms         dh_installdeb         #dh_shlibdeps         dh_gencontrol         dh_md5sums         dh_builddeb  binary: binary-indep binary-arch 

.phony: build clean binary-indep binary-arch binary install

------------------control-------------------

source: minicam section: unknown priority: maintainer: kkangji <jhkang@xycron.net> build-depends: debhelper (>= 8.0.0) standards-version: 3.9.2 homepage: <insert upstream url, if relevant> #vcs-git: git://git.debian.org/collab-maint/minicam.git #vcs-browser: http://git.debian.org/?p=collab-maint/minicam.git;a=summary  package: minicam architecture: depends: ${shlibs:depends}, ${misc:depends} description: <insert 60 chars description> 


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -