Differences between revisions 5 and 6
Revision 5 as of 2011-11-25 11:58:58
Size: 811
Comment:
Revision 6 as of 2011-11-27 14:19:51
Size: 817
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
NB: Work In Progress For Mame and Mess >= 0.144

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
# switch to mess-only branch in git repository
git checkout mess-only
./debian/rules get-orig-source

# get mame 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