-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f89830
commit c12f690
Showing
8 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
com.github.manexim.news (0.1.0) bionic; urgency=medium | ||
|
||
* Initial release | ||
|
||
-- Marius Meisenzahl <[email protected]> Sun, 03 Nov 2019 13:13:11 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Source: com.github.manexim.news | ||
Section: x11 | ||
Priority: optional | ||
Maintainer: Marius Meisenzahl <[email protected]> | ||
Build-Depends: meson, | ||
debhelper (>= 9), | ||
libgtk-3-dev, | ||
libgee-0.8-dev, | ||
libgranite-dev, | ||
libsoup2.4-dev, | ||
libxml2-dev, | ||
libwebkit2gtk-4.0-dev, | ||
valac | ||
Standards-Version: 3.9.3 | ||
|
||
Package: com.github.manexim.news | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Description: News | ||
The best news sources, all in one place |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Format: http://dep.debian.net/deps/dep5 | ||
Upstream-Name: com.github.manexim.news | ||
Source: https://github.com/manexim/news | ||
|
||
Files: src/* data/* debian/* | ||
Copyright: 2019 Marius Meisenzahl <[email protected]> | ||
License: GPL-3.0+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
# Sample debian/rules that uses debhelper. | ||
# This file was originally written by Joey Hess and Craig Small. | ||
# As a special exception, when this file is copied by dh-make into a | ||
# dh-make output file, you may use that output file without restriction. | ||
# This special exception was added by Craig Small in version 0.37 of dh-make. | ||
|
||
# Uncomment this to turn on verbose mode. | ||
#export DH_VERBOSE=1 | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_clean: | ||
rm -rf debian/build | ||
|
||
override_dh_auto_configure: | ||
mkdir -p debian/build | ||
cd debian/build && meson --prefix=/usr ../.. | ||
|
||
override_dh_auto_build: | ||
cd debian/build && ninja -v | ||
|
||
override_dh_auto_test: | ||
cd debian/build && ninja test | ||
|
||
override_dh_auto_install: | ||
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.manexim.news ninja install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters