Tagged Questions

deb is the extension of the Debian software package format. Debian packages are standard Unix ar archives that include two gzipped tar archives: one that holds the control information and another that contains the data.

learn more… | top users | synonyms (1)

7
votes
3answers
170 views

How can I build a 32bit (i386) .deb on a 64bit box?

I have applications which successfully compile with the -m32 switch (in DMD and/or GCC) to produce: appname: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared ...
6
votes
4answers
1k views

Why RPM is better than DEB for MeeGo?

I know there has been a lot fuzz about this subject on various forums and newsgroups concerning the merge of Moblin and Maemo. I'd like to know what stackoverflow-fellows think about this. What are ...
5
votes
3answers
148 views

Does anyone have a 'hello world' Debian package, for D source code?

I'm writing a D application which I want to package as a Debian package. Does anyone know of a tutorial, or a skeleton package, to show me how to to do this for a D application? Do I need to use ...
4
votes
2answers
206 views

Installing perl module: cpan shell vs rpm/deb

I just wonder - are there any advantages to installing perl modules from the cpan shell compared to installing them by package management? Apart from occasionally having quicker access to the latest ...
4
votes
2answers
196 views

How to build debian package with CPack to execute setup.py?

Until now, my project had only .cpp files that were compiled into different binaries and I managed to configure CPack to build a proper debian package without any problems. Recently I wrote a couple ...
4
votes
2answers
605 views

license info of a deb package

I am trying to get license information of uninstalled deb packages. dpkg --info <package-name>.deb does not give that information. Is there any command in ubuntu which will give this info? (In ...
3
votes
2answers
76 views

How to access the original tarball when packaging for Debian?

I am packaging a piece of Python software that uses DistUtilsExtra. When running python setup.py install in my debian/rules, DistUtilsExtra automatically recompiles the translation template .pot file ...
3
votes
1answer
146 views

Compiling from source vs. deb package

I'm compiling several C/C++ packages from source on Ubuntu. I compare the results from my build to running with the debian install, and find that my executables are slower. I used readelf -a to ...
3
votes
2answers
184 views

Distributing a jar

I'm distributing a jar file, with associated libraries, media, documentation, etc. I would like to create a simple deb/rpm package for linux users, and I would also like to distribute this for ...
3
votes
2answers
275 views

easy, straightforward way to package a python program for debian?

i'm having trouble navigating the maze of distribution tools for python and debian; cdbs, debhelper, python-support, python-central, blah blah blah .. my application is a fairly straightforward one - ...
3
votes
5answers
971 views

How to convert 64 bit .deb file into 32 bit .deb file

deb file of an application. I want to convert the same file into 32 bit .deb file. So how to convert 64 bit .deb file into 32 bit .deb
3
votes
1answer
273 views

Including license agreement in .deb file

How can i include a license agreement interaction in a .deb file? The question http://stackoverflow.com/questions/668838/linux-support-for-click-thru-licenses only asks if its possible, but not how. ...
3
votes
5answers
378 views

How to package a game for Linux?

I have a game that currently runs under Windows and Mac OS X and I'd like to make it available under Linux. The porting should be fairly easy since it's a Java based game and uses portable libraries ...
2
votes
2answers
95 views

How can I uninstall the last installed application (recently installed) with dpkg?

I need to use a command and or script that uninstalls the last recently installed application deb . I can't use apt-get in this case but rather dpkg --purge or similar, something like dpkg --remove ...
2
votes
1answer
102 views

How to make apt-get accept New config files in a unattended install of debian from Repo

I am writing a script for a unattended install of a package that is in our Repo, It is a Software Package with one of the Debians marked config. Is there any option that I can pass to ...
2
votes
1answer
76 views

How to create desktop icons for a deb package created with CPack?

I am using CMake/CPack for my project. On Windows, I use CPack with NSIS, and it's all good. But for Linux, I use the DEB generator for CPack, and I have run into a few issues. Namely, I cannot find a ...
2
votes
0answers
72 views

Installing .deb from MobileSafari

Does anyone know how to make .deb files install directly from MobileSafari on the iPhone/iPod touch/iPad? I know it's possible, as seen with the 'lima' project, but I have no idea what it's supposed ...
2
votes
1answer
72 views

Trying to make App Store loading bar

When an app is downloaded from the app store, it goes directly to the home screen with a nice looking loading bar (to show when the app is downloading/installing). JailbreakMe 3.0 utilizes this. Does ...
2
votes
0answers
135 views

Why is dh_usrlocal throwing a build error?

I am trying to compile a deb package for my server. When I go to build, everything looks good until it gets to dh_usrlocal The build stops and make returns an error. The problem is I am trying this ...
2
votes
1answer
84 views

Easy way to chane .deb build prefix?

I am trying to make a live CD for simplifying chrooting into unbootable Linux systems for users, as many unbootable Linux issues could be fixed with chroot, but many users probably don't understand ...
2
votes
0answers
47 views

What's a good method to trigger apache restart after .deb installation?

I have several custom .debs that I've built. They all depend on apache and after upgrade of any package apache needs to be restarted. Restarting apache naively from the postinst I get a restart for ...
2
votes
3answers
149 views

How to bundle an application for Linux

I am writing a (closed-source) application and will provide binaries for all three major platforms (MacOS X, Linux and Windows). It uses Qt under the LGPL license so I am required to dynamically link ...
2
votes
2answers
137 views

What are the common tools to build a .deb installation file for applications written in perl?

So I have some source code and I need to put it in a .deb binary so I can easily deploy on my server. I seem to be having trouble find good easy to use tools that will enable me to do so. The source ...
2
votes
2answers
67 views

how do i declare a non .deb binary dependency on a .deb package?

i'm creating a .deb package and i got to the point where i can express most of my dependencies. unfortunately, there are some dependencies left that currently don't have a .deb package (eg wdfs, or ...
2
votes
2answers
140 views

building Debian and Redhat packages with leiningen

Moving my project from Ant to Leiningen went so smoothly that I am looking at new things to include in the build process. one of which would be to automatically create a .deb and .rpm file in the ...
2
votes
1answer
151 views

Linux packaging abstraction layer written in Python?

I'm looking for a way to generate .deb and .rpm packages from my build scripts, containing the resulting products. Since everything is written in Python, I'm wondering if anyone knows of an ...
2
votes
1answer
226 views

deb package task for Phing

does anybody know a Phing Task to create .deb packages for Debian base linux systems?
1
vote
2answers
56 views

How to create deb package that can be used on different versions of Ubuntu

I've created package clarity-icon-theme ppa:jcubic/jcubicppa but only for Maverik I have lines like this in debian/changelog file clarity-icon-theme (0.3) maverick; urgency=low * Add missing ...
1
vote
1answer
30 views

Tips for interacting with debian based repositories

I am planning on writing a small program that interacts with a debian based repository - namely doing a partial mirror**. I am planning to write it in python. What are some tips for working with the ...
1
vote
1answer
30 views

How can I create a debian package that depends on a specific kernel

How would I add a specific kernel and headers to the depends section of a debian control file? I am trying to compile a package the need specific kernel patches to work right.
1
vote
2answers
82 views

Open debian package with Java

Are there any libraries in Java for unpacking a .deb (debian) archive? Unfortunately I Couldn't find anything useful out there yet. Thanks.
1
vote
1answer
30 views

What is the best way of creating several rpm's (deb's) packages in one CMake project?

I need to create several different rpm's (deb's) (with different list of files) from one CMake project. What is the best way for this? Can some one suggest some project (CMakeList.txt) with such ...
1
vote
0answers
195 views

checkinstall creates useless deb?

I have a trivially simple command-line program that literally consists of a python script and some helper shell scripts. I'd like to learn about packaging this program, though it is trivial. From ...
1
vote
1answer
542 views

How to add files to debian package with CPack?

I am using Cmake with Cpack to create debian package. I would like to use Cpack to generate a package that will install that files to specific location. (ex. /usr/lib /usr/include/aaa) each library ...
1
vote
2answers
247 views

How to create a .deb of a single Python script

I've created a GUI frontend in Python for playing and recording audio streams and would like to create a .deb file so my friends can easily install the script on their Ubuntu systems. This is my first ...
1
vote
0answers
229 views

Mac OS .deb packaging trouble

I've searched a lot, but didn't find the solution. I need to package my ios app into .deb. I have installed Mac Ports and dpkg, I have control file in DEBIAN folder in MyApp folder I run ...
1
vote
1answer
401 views

How to create deb package with screenshot for Ubuntu?

I've create a deb package using instructions from launchpad and put it in PPA, and I want to include the screenshot to be displayed in SoftwareCenter. and additionally I want to provide Licence and ...
1
vote
2answers
394 views

Adobe Air native installer Linux - Dependency is not satisfiable

I created native installers for my air application successfully under MacOS and Windows. With Ubuntu 10 I am able to create a .deb package, but when I launch it opens the Ubuntu software center ...
1
vote
1answer
216 views

distributing django application via deb repository

I have created/testing small to medium size ( mysql + django (python) ) application which I would like to distribute via Debian repository so that my users ( who uses ubuntu ) can easily install and ...
1
vote
3answers
3k views

How to create .deb packages on Mac OS X

I am trying to upload my app on Cydia and it requires .deb package. I am unable to figure out how to make .deb packages on mac. I am using 10.6.3 when I write this command on terminal dpkg-deb -b ...
1
vote
2answers
2k views

I need my Debian rules file to simply copy files to it's target

I have a large project where we have the following files: A few 3rd party pre-compiled binaries Our own in-house binaries A collection of Ruby scripts A sizable Ruby on Rails project This ...
1
vote
3answers
2k views

How do I add an init.d script into a .deb

I have a project.init file in the debian directory (along with rules, control, etc), and I have dh_installinit in my rules file (in the binary-arch rule). When dpkg-buildpackage completes, the init ...
0
votes
1answer
16 views

Uploading and updating ubuntu repository with new deb

My problem is as follows: I have an ubuntu package repository which I want to update with some packages. I've been browsing around trying to figure out how this is done and came across 'dput'. ...
0
votes
1answer
27 views

No deploy option QT creator

I am trying to make a deb package using QT creator in ubuntu, but I am unable to find the deploy option in Build->Deploy Project ... I dont know whether there is a difference of QT creator version or ...
0
votes
1answer
15 views

How to create deb package with build dependencies

I have a package clarity-icon-theme and to build it it need ImageMagic. When I create that package launchpad throw that "convert command not found". How can I create deb package that use ImageMagic ...
0
votes
0answers
20 views

Best way to package a port?

This is a problem that I run into someone frequently, what is a surefire way to capture everything that is installed by the make install command and then package it up? For example, I've just ...
0
votes
1answer
40 views

Make: Extracting a number from working directory name (Debian packaging rules)

I'd like some help with the following problem: I have a debian package built daily with Launchpad's Recipes feature. The version name (and the name of the source directory) is automatically generated ...
0
votes
2answers
75 views

Is it wise to use Debian (.deb) packages to distribute our software to production servers?

We have various programs and scripts that we create that we need to deploy on production Ubuntu servers after testing. We are considering packaging our software as Debian (.deb) files and using ...
0
votes
0answers
73 views

How to specify dependency in .rpm file which is converted from .deb with alien?

I try to convert .deb to .rpm with alien. What I want to do is specify dependency in .rpm. Depends:imlib2-dev is included in control file of .deb package. But it doesn't exist in rpm package in ...
0
votes
1answer
133 views

How to install related package automatically with .deb package?

I try to create .deb package for my program. It needs ImLib2-dev package. I want to make .deb package install ImLib2-dev package automatically. Package : MyProject Version : 1.0.0.0 Section : base ...

1 2