diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000000..10b59261f3 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +openrct2 (0.0.4-develop-1) unstable; urgency=medium + + * Initial release. (Closes: #XXXXXX) + + -- Michał Janiszewski Sun, 10 Jan 2016 23:41:16 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000000..ec635144f6 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000000..3a01e3e36f --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: openrct2 +Maintainer: Michał Janiszewski +Section: misc +Priority: optional +Standards-Version: 3.9.2 +Multi-Arch: same +Build-Depends: debhelper (>= 9), cmake, libsdl2-dev, libsdl2-ttf-dev, gcc, pkg-config, g++-multilib, gcc-multilib, libjansson4 (>= 2.7), libjansson-dev (>= 2.7), libspeex-dev, libspeexdsp-dev, libcurl4-openssl-dev, libcrypto++-dev, libfontconfig1-dev, libfreetype6-dev, libpng-dev, libpng16-dev + +Package: openrct2 +Architecture: i386 +Homepage: https://openrct2.website/ +Vcs-Browser: https://github.com/OpenRCT2/OpenRCT2 +Vcs-Git: https://github.com/OpenRCT2/OpenRCT2 +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: An open source re-implementation of Roller Coaster Tycoon 2. + An open source clone of RollerCoaster Tycoon 2 built by decompiling the + original game one bit at a time. + Requires original game assets. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000000..e69de29bb2 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000000..a3bada8c8f --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +BUILDDIR=build_dir + +build: + scripts/linux/install.sh + mkdir $(BUILDDIR) + cd $(BUILDDIR); cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. + make -C $(BUILDDIR) + touch build + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000000..163aaf8d82 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)