Difference between revisions of "PPA"

From Kiwix
Jump to navigation Jump to search
(Add a first versión)
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
To upload a PPA version, do a next steps:
To upload a new PPA version to [https://launchpad.net/~kiwixteam/+archive/ppa Launchpad], follow next steps:


== Packaging ==
<source lang="bash">
<source lang="bash">
svn export https://kiwix.svn.sourceforge.net/svnroot/kiwix/moulinkiwi kiwix_ppa
git clone --depth=1 git://git.code.sf.net/p/kiwix/kiwix kiwix_ppa
cd kiwix_ppa
cd kiwix_ppa
pico debian/changeset #edit as "kiwix (0.9-versionX) lucid; urgency=low"
pico debian/changelog #edit as "kiwix (0.9-versionX) maverick; urgency=low"
sudo apt-get build-dep kiwix
./autogen.sh
./autogen.sh
./configure
./configure
Line 13: Line 15:
dput ppa:kiwixteam/ppa kiwix_0.9-versionX_source.changes
dput ppa:kiwixteam/ppa kiwix_0.9-versionX_source.changes
</source>
</source>
<noinclude>
== See also ==
* [[Ubuntu PPA]]
* [[Translation]]
</noinclude>

Revision as of 02:04, 26 February 2013

To upload a new PPA version to Launchpad, follow next steps:

Packaging

git clone --depth=1 git://git.code.sf.net/p/kiwix/kiwix kiwix_ppa
cd kiwix_ppa
pico debian/changelog #edit as "kiwix (0.9-versionX) maverick; urgency=low"
sudo apt-get build-dep kiwix
./autogen.sh
./configure
make deb
cd kiwix-0.9
debuild -S -sa
cd ..
dput ppa:kiwixteam/ppa kiwix_0.9-versionX_source.changes


See also