Differences between revisions 7 and 8
Revision 7 as of 2011-11-28 17:27:48
Size: 0
Comment: Obsolete, content moved to MameDevel
Revision 8 as of 2011-12-01 17:09:37
Size: 1474
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Mess: Multi Emulator Super System =
{{http://pkg-games.alioth.debian.org/debian-games-p0.png|alt debian game |width=100}}

This is a developer help page for the mess package. See [[Mame]] and [[Mess]] for the user Readme.
---------------

=== Resources ===
  * Build logs: https://buildd.debian.org/status/package.php?p=mame&suite=sid
  * Git Web Interface: http://anonscm.debian.org/gitweb/?p=pkg-games/mame.git;a=summary

=== Getting the packaging code ===
The development of the package is done on Alioth, inside the pkg-games group.
To participate in the packaging work, create an account on alioth, and present yourself on the debian-devel-game mailing list
(see [[Games/VCS]])

=== Building a package ===
For Mame and Mess >= 0.144

===== Check out the code =====
{{{
#read only
git clone git://git.debian.org/git/pkg-games/mame.git
}}}
{{{
#read write
git clone git+ssh://kdev-guest@git.debian.org/git/pkg-games/mame.git
}}}
Replace here kdev-guest with your Alioth username.

===== Build a package =====
{{{#!highlight bash numbers=off
# get source code
cd mame
./debian/rules get-orig-source

# get mess version
MESS_VERSION=$(dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p')
cd ..

# untar
ln -s mame mess-${MESS_VERSION}
tar xjf mess_${MESS_VERSION}.orig.tar.bz2
cd mess-${MESS_VERSION}

# for the package maintainer
dpkg-buildpackage -k"your_gpg_key_id"
# for you
dpkg-buildpackage -us -uc
}}}

Mess: Multi Emulator Super System

alt debian game

This is a developer help page for the mess package. See Mame and Mess for the user Readme.


Resources

Getting the packaging code

The development of the package is done on Alioth, inside the pkg-games group. To participate in the packaging work, create an account on alioth, and present yourself on the debian-devel-game mailing list (see Games/VCS)

Building a package

For Mame and Mess >= 0.144

Check out the code

#read only
git clone git://git.debian.org/git/pkg-games/mame.git 

#read write
git clone git+ssh://kdev-guest@git.debian.org/git/pkg-games/mame.git  

Replace here kdev-guest with your Alioth username.

Build a package

# get source code
cd mame
./debian/rules get-orig-source

# get mess version
MESS_VERSION=$(dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p')
cd ..

# untar
ln -s  mame mess-${MESS_VERSION}
tar xjf mess_${MESS_VERSION}.orig.tar.bz2
cd mess-${MESS_VERSION}

# for the package maintainer
dpkg-buildpackage -k"your_gpg_key_id"
# for you 
dpkg-buildpackage -us -uc