1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-06-30 19:45:23 +00:00

Add initial versions of the Debian package files

This commit is contained in:
John Zaitseff 2011-07-26 13:43:08 +10:00
parent b730dc64df
commit 06675471e1
9 changed files with 122 additions and 0 deletions

7
debian/changelog vendored Normal file
View File

@ -0,0 +1,7 @@
trader (7.0-1) unstable; urgency=low
* Initial release of the Debian version of Star Traders, a simple game
of interstellar trading.
-- John Zaitseff <J.Zaitseff@zap.org.au> Tue, 26 Jul 2011 11:51:56 +1000

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

17
debian/control vendored Normal file
View File

@ -0,0 +1,17 @@
Source: trader
Section: games
Priority: optional
Maintainer: John Zaitseff <J.Zaitseff@zap.org.au>
Build-Depends: debhelper (>= 7), quilt, libncursesw5-dev
Standards-Version: 3.9.2
Homepage: http://www.zap.org.au/software/trader/
Vcs-Svn: http://svn.zap.org.au/svn/trader/unix/trunk/
Vcs-Browser: http://www.zap.org.au/viewvc/trader/trunk/
Package: trader
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: a simple game of interstellar trading
Star Traders is a simple game of interstellar trading, where the
objective is to create companies, buy and sell shares, borrow and repay
money, in order to become the wealthiest player (the winner).

27
debian/copyright vendored Normal file
View File

@ -0,0 +1,27 @@
This package was Debianised by John Zaitseff <J.Zaitseff@zap.org.au>, who
also wrote the original package. It was downloaded from:
http://www.zap.org.au/software/trader/
Copyright:
Copyright (C) 1990-2011, John Zaitseff.
License:
Star Traders is free software that is distributed under the terms of
the GNU General Public License. You can redistribute it and/or modify
it under the terms of that License as published by the Free Software
Foundation, either version 3 or (at your option) any later version.
This game 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 in the file COPYING for more details.
Debian packaging:
Copyright (C) 2011, John Zaitseff.
The Debian packaging is licensed under the GNU General Public License,
version 3 or later, as referenced in /usr/share/common-licenses/GPL-3.

1
debian/patches/series vendored Normal file
View File

@ -0,0 +1 @@

65
debian/rules vendored Executable file
View File

@ -0,0 +1,65 @@
#!/usr/bin/make -f
# debian/rules: Create the Debian package for Star Traders
# Copyright (C) 2011, John Zaitseff
# Uncomment the following line for verbose Debhelper mode
#export DH_VERBOSE=1
STAMP_PATCH ?= debian/stamp-patch
STAMP_BUILD ?= debian/stamp-build
CFLAGS = -g -Wall
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O2
endif
default: binary
# Include the quilt targets "patch" and "unpatch"
include /usr/share/quilt/quilt.make
build: $(STAMP_BUILD)
$(STAMP_BUILD): patch
dh_testdir
dh_auto_configure
dh_auto_build -- CFLAGS="$(CFLAGS)"
touch $(STAMP_BUILD)
clean: unpatch
dh_testdir
dh_testroot
dh_auto_clean
rm -f $(STAMP_BUILD)
dh_clean
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs
dh_auto_install
binary: binary-arch binary-indep
binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
dh_installdocs
dh_installman
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
.PHONY: default build clean install binary binary-arch binary-indep

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

1
debian/trader.dirs vendored Normal file
View File

@ -0,0 +1 @@
/usr/bin

2
debian/trader.docs vendored Normal file
View File

@ -0,0 +1,2 @@
README
NEWS