mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-12-26 17:21:50 +01:00
add debian packaging scripts
This commit is contained in:
parent
ea235c233f
commit
b16ee7f9d7
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
patchimage (2.6-1nano) unstable; urgency=low
|
||||||
|
|
||||||
|
* initial release
|
||||||
|
|
||||||
|
-- Christopher Roy Bratusek <nano@tuxfamily.org> Tue, 06 Aug 2013 22:15:10 +0200
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
9
|
20
debian/control
vendored
Normal file
20
debian/control
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Source: patchimage
|
||||||
|
Section: games
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Christopher Roy Bratusek <nano@tuxfamily.org>
|
||||||
|
Build-Depends: debhelper (>= 8), make
|
||||||
|
Standards-Version: 3.9.4
|
||||||
|
Homepage: http://nanolx.org/nanolx/patchimage
|
||||||
|
|
||||||
|
Package: patchimage
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: Wii image patcher
|
||||||
|
Patchimage is a script that allows to patch
|
||||||
|
riivoluton patches into wbfs/iso images of
|
||||||
|
legal Wii game dumps.
|
||||||
|
.
|
||||||
|
Currently there are 12 modifications of
|
||||||
|
New Super Mario Bros. Wii supported, aswell
|
||||||
|
as one modification of The Legend of Zelda:
|
||||||
|
A Link To The Past.
|
65
debian/copyright
vendored
Normal file
65
debian/copyright
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: patchimage
|
||||||
|
Upstream-Contact: Christopher Roy Bratusek <nano@tuxfamily.org>
|
||||||
|
Source: http://nanolx.org/nanolx/patchimage
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2013 Christopher Roy Bratusek <nano@tuxfamily.org>
|
||||||
|
License: GPL-3
|
||||||
|
|
||||||
|
Files: tools/uips*
|
||||||
|
Copyright: 2010 Neill Corlett <neill@neillcorlett.com>
|
||||||
|
License: GPL-3
|
||||||
|
|
||||||
|
License: GPL-3
|
||||||
|
This package is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This package is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this package; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
.
|
||||||
|
On Debian systems, the full text of the GNU General Public License
|
||||||
|
version 3 can be found in `/usr/share/common-licenses/GPL-3'.
|
||||||
|
|
||||||
|
Files: tools/wit.*
|
||||||
|
Copyright: 2009-2013 Dirk Clemens <wiimm@wiimm.de>
|
||||||
|
License: GPL-2
|
||||||
|
|
||||||
|
Files: tools/ucat tools/unp
|
||||||
|
Copyright: 1997, Andre Karwath <Andre.Karwath@informatik.tu-chemnitz.de>
|
||||||
|
2000 - 2010, Eduard Bloch <blade@debian.org>
|
||||||
|
License: GPL-2
|
||||||
|
|
||||||
|
License: GPL-2
|
||||||
|
This program is free software; you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU General Public License Version 2 as published by the Free
|
||||||
|
Software Foundation.
|
||||||
|
.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License with
|
||||||
|
the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-2;
|
||||||
|
if not, write to the Free Software Foundation, Inc., 51 Franklin St,
|
||||||
|
Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
.
|
||||||
|
On Debian systems, the full text of the GNU General Public License
|
||||||
|
version 3 can be found in `/usr/share/common-licenses/GPL-3'.
|
||||||
|
|
||||||
|
Files: patches/*
|
||||||
|
Copyright: 2013 DaMysteryMan
|
||||||
|
License: Public Domain
|
||||||
|
|
||||||
|
Files: tools/applyppf3.*
|
||||||
|
Copyright: 2006 SukkoPera <sukkopera@gmail.com>
|
||||||
|
License: Public Domain
|
3
debian/docs
vendored
Normal file
3
debian/docs
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
GAMEIDS
|
||||||
|
README
|
||||||
|
README.RC
|
7
debian/rules
vendored
Executable file
7
debian/rules
vendored
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
Loading…
Reference in New Issue
Block a user