-
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.
add files necessary to package for debian and fedora
- Loading branch information
1 parent
9779356
commit aef47e3
Showing
8 changed files
with
864 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
twitch-downloader-gui for Debian | ||
|
||
-- mohad <mohammedkaabi64@gmail> Tue, 25 Oct 2022 14:19:18 +0300 |
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 @@ | ||
twitch-downloader-gui (1.0-1) UNRELEASED; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- mohad <[email protected]> Tue, 25 Oct 2022 14:19:18 +0300 |
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,15 @@ | ||
Source: twitch-downloader-gui | ||
Section: misc | ||
Priority: optional | ||
Maintainer: mohad12211 <[email protected]> | ||
Build-Depends: debhelper-compat (= 12) | ||
Standards-Version: 4.5.0 | ||
Homepage: https://github.com/mohad12211/TwitchDownloader-gui | ||
|
||
Package: twitch-downloader-gui | ||
Architecture: any | ||
Multi-Arch: foreign | ||
Depends: ${misc:Depends}, ${shlibs:Depends}, ffmpeg, libcurl4 | ||
Description: GUI Linux App to download Twitch clips/vods/chats and render the chat. | ||
Download Clips, Vods, Chat in multiple formats from Twitch.tv. | ||
A linux GUI app wrapper for the lay295/TwitchDownloader amazing project. |
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
#!/usr/bin/make -f | ||
export DH_VERBOSE = 1 | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_install: | ||
dh_auto_install -- prefix=/usr | ||
|
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 (quilt) |
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 @@ | ||
version=3 |
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,36 @@ | ||
Name: twitch-downloader-gui | ||
Version: 1.0 | ||
Release: 1%{?dist} | ||
Summary: GUI Linux App to download clips/vods/chats and render chat for Twitch | ||
|
||
License: GPLv3 | ||
URL: https://github.com/mohad12211/TwitchDownloader-gui | ||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz | ||
|
||
Requires: libcurl (ffmpeg or ffmpeg-free) | ||
|
||
BuildArch: x86_64 | ||
|
||
%description | ||
Download Clips, Vods, Chat in multiple formats from Twitch.tv, and Render the Chat. A GUI for linux. | ||
|
||
%prep | ||
%setup -q | ||
|
||
%build | ||
make %{?_smp_mflags} | ||
|
||
%install | ||
%make_install | ||
|
||
%files | ||
%{_bindir}/%{name} | ||
%{_datadir}/applications/twitch-downloader-gui.desktop | ||
%{_datadir}/icons/hicolor/*/apps/twitch-downloader-gui.png | ||
%license LICENSE | ||
|
||
|
||
|
||
%changelog | ||
* Mon May 16 03:58:10 +03 2022 mohad12211 <[email protected]> | ||
- First Release |