Skip to content

Commit

Permalink
Create installation package (#147)
Browse files Browse the repository at this point in the history
* Adds files to be able to create a debian package.

Requires build-essential, devscripts and debhelper version 9 or higher (see https://wiki.debian.org/Packaging/Intro?action=show&redirect=IntroDebianPackaging for an example)

Run dpkg-buildpackage -us -uc in deploy/yats-1.0 to create dep package.
  • Loading branch information
mflueggen authored and Highlife1911 committed Apr 6, 2018
1 parent 5b4f9c4 commit 60b0246
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deploy/yats-1.0/debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
yats (1.0) UNRELEASED; urgency=low

* Initial release.

-- YaTS Team <> Fri, 06 Apr 2018 19:00:00 +0200
1 change: 1 addition & 0 deletions deploy/yats-1.0/debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
10 changes: 10 additions & 0 deletions deploy/yats-1.0/debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Source: yats
Maintainer: YaTS Team
Section: misc
Priority: extra
Standards-Version: 3.8.0
Build-Depends: build-essential, debhelper (>=9)

Package: yats
Architecture: any
Description: YaTS is a general purpose task scheduler library with a focus on computer graphical rendering tasks. Its main goal is to allow parallel execution of connected and unconnected tasks automatically, without explicit handling from the user.
14 changes: 14 additions & 0 deletions deploy/yats-1.0/debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

This package was debianised by YaTS Team on Wed, 04 Apr 2018 17:16:54 +0200

It was downloaded from:

https://github.com/hpicgs/yats

Upstream Author:

YaTS Team

License:

This software is available to you under the terms of the MIT license, see "https://github.com/hpicgs/yats/blob/master/LICENSE".
1 change: 1 addition & 0 deletions deploy/yats-1.0/debian/install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
../../source/yats/include/yats usr/include
5 changes: 5 additions & 0 deletions deploy/yats-1.0/debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/make -f

%:
dh $@

1 change: 1 addition & 0 deletions deploy/yats-1.0/debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)

0 comments on commit 60b0246

Please sign in to comment.