Codebase list gnome-twitch / 738fa18
Added debian directory Tim Dengel 8 years ago
10 changed file(s) with 137 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 gnome-twitch (0.1.0-1) UNRELEASED; urgency=low
1
2 * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
3
4 -- Tim Dengel <tim.dengel.debian@gmail.com> Sat, 17 Oct 2015 22:02:41 +0200
0 Source: gnome-twitch
1 Section: video
2 Priority: optional
3 Maintainer: Tim Dengel <tim.dengel.debian@gmail.com>
4 Build-Depends: debhelper (>= 9), meson (>= 0.26.0), ninja, libgtk-3-dev (>= 3.16), libsoup2.4-dev, libjson-glib-dev, libgstreamer1.0-dev, libclutter-gst-3.0-dev, libclutter-gtk-1.0-dev
5 Standards-Version: 3.9.6
6 Homepage: https://github.com/Ippytraxx/gnome-twitch
7 #Vcs-Browser: https://github.com/Ippytraxx/gnome-twitch
8
9 Package: gnome-twitch
10 Architecture: any
11 Depends: ${shlibs:Depends}, ${misc:Depends}
12 Description: GNOME Twitch app for watching Twitch.tv streams without a browser or flash.
13 gnome-twitch provides a GTK3 interface for viewing streams on Twitch.
14 At the moment you can browse, search and view streams and change the video quality.
15 More features like favorites, chat and recording streams are planned.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: gnome-twitch
2 Source: <url://example.com>
3
4 Files: *
5 Copyright: 2015 Vincent Szolnoky <ippytraxx@installgentoo.com>
6 License: GPL-3.0+
7
8 Files: debian/*
9 Copyright: 2015 Tim Dengel <tim.dengel.debian@gmail.com>
10 License: GPL-3.0+
11
12 License: GPL-3.0+
13 This program is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17 .
18 This package is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22 .
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <https://www.gnu.org/licenses/>.
25 .
26 On Debian systems, the complete text of the GNU General
27 Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
0 README.md
1 TODO.md
0 .\" Hey, EMACS: -*- nroff -*-
1 .\" (C) Copyright 2015 Tim Dengel <tim.dengel.debian@gmail.com>,
2 .\"
3 .TH GNOME-TWITCH VIDEO "October 17, 2015"
4 .\" Please adjust this date whenever revising the manpage.
5 .\"
6 .\" Some roff macros, for reference:
7 .\" .nh disable hyphenation
8 .\" .hy enable hyphenation
9 .\" .ad l left justify
10 .\" .ad b justify to both left and right margins
11 .\" .nf disable filling
12 .\" .fi enable filling
13 .\" .br insert line break
14 .\" .sp <n> insert n+1 empty lines
15 .\" for manpage-specific macros, see man(7)
16 .SH NAME
17 gnome-twitch \- GNOME Twitch app for watching Twitch.tv streams without a browser or flash.
18 .SH SYNOPSIS
19 .B gnome-twitch
20 .RI [ options ] " files" ...
21 .br
22 .B bar
23 .RI [ options ] " files" ...
24 .SH DESCRIPTION
25 This manual page documents briefly the
26 .B gnome-twitch
27 and
28 .B bar
29 commands.
30 .PP
31 .\" TeX users may be more comfortable with the \fB<whatever>\fP and
32 .\" \fI<whatever>\fP escape sequences to invode bold face and italics,
33 .\" respectively.
34 \fBgnome-twitch\fP is a program that...
35 .SH OPTIONS
36 These programs follow the usual GNU command line syntax, with long
37 options starting with two dashes (`-').
38 A summary of options is included below.
39 For a complete description, see the Info files.
40 .TP
41 .B \-h, \-\-help
42 Show summary of options.
43 .TP
44 .B \-v, \-\-version
45 Show version of program.
0 ?package(gnome-twitch):needs="X11|text|vc|wm" section="Applications/Video"\
1 title="gnome-twitch" command="/usr/bin/gnome-twitch"
0 #!/usr/bin/make -f
1 export DH_VERBOSE = 1
2
3 # see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
4 DPKG_EXPORT_BUILDFLAGS = 1
5 include /usr/share/dpkg/default.mk
6
7 # see FEATURE AREAS in dpkg-buildflags(1)
8 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all
9
10 # see ENVIRONMENT in dpkg-buildflags(1)
11 # package maintainers to append CFLAGS
12 #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
13 # package maintainers to append LDFLAGS
14 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
15
16
17 %:
18 dh $@
19
20 override_dh_auto_configure:
21 mkdir build && meson --prefix /usr . build
22 mesonconf build -Dprefix=/usr
23
24 override_dh_auto_build:
25 ninja -C build all
26
27 override_dh_auto_clean:
28 rm -rf build
29
30 override_dh_auto_install:
31 dh_installdirs
32 DESTDIR=$(CURDIR)/debian/gnome-twitch ninja -C build install
0 3.0 (quilt)
0 version=3
1
2 https://github.com/Ippytraxx/gnome-twitch/tags .*/v?((?:\d\S)*\d)\.tar\.gz