Tagged Questions

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 ...
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 ...
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
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 ...
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 ...
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
2answers
421 views

Conf files and static files in a deb package

I'm using dh_help to build a package template and trying to follow the ubuntu and debian packaging guides for creating a binary package. How do I tell debuild which file is a conf file and should go ...
-1
votes
0answers
39 views

How do I package my Python Code in APT (Advanced Packaging Tool) and make it available for installations?

I have gone through APT (Advanced_Packaging_Tool) but could not find actual steps to take to CREATE an apt package so that it can be then installed via "apt-get install myApplication" reprepo can be ...