-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from tsirysndr/chore/packaging
chore: package for ubuntu/debian and fedora
- Loading branch information
Showing
8 changed files
with
100 additions
and
1 deletion.
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 @@ | ||
*.deb |
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 @@ | ||
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,8 @@ | ||
Package: tunein-cli | ||
Version: 0.3.0 | ||
Section: user/multimedia | ||
Priority: optional | ||
Architecture: amd64 | ||
Maintainer: Tsiry Sandratraina <[email protected]> | ||
Depends: alsa-utils, libasound2-dev | ||
Description: Browse and listen to thousands of radio stations across the globe right from your terminal π π» π΅β¨ |
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 @@ | ||
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,9 @@ | ||
Package: tunein-cli | ||
Version: 0.3.0 | ||
Section: user/multimedia | ||
Priority: optional | ||
Architecture: arm64 | ||
Maintainer: Tsiry Sandratraina <[email protected]> | ||
Depends: alsa-utils, libasound2-dev | ||
Description: Browse and listen to thousands of radio stations across the globe right from your terminal π π» π΅β¨ | ||
|
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,26 @@ | ||
Name: tunein-cli | ||
Version: 0.3.0 | ||
Release: 1%{?dist} | ||
Summary: CLI for listening to internet radio stations | ||
|
||
License: MIT | ||
|
||
BuildArch: x86_64 | ||
|
||
Requires: alsa-utils, alsa-lib-devel | ||
|
||
%description | ||
Browse and listen to thousands of radio stations across the globe right from your terminal π π» π΅β¨ | ||
|
||
%prep | ||
# Prepare the build environment | ||
|
||
%build | ||
# Build steps (if any) | ||
|
||
%install | ||
mkdir -p %{buildroot}/usr/bin | ||
cp -r %{_sourcedir}/amd64/usr %{buildroot}/ | ||
|
||
%files | ||
/usr/bin/tunein |
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,27 @@ | ||
|
||
Name: tunein-cli | ||
Version: 0.3.0 | ||
Release: 1%{?dist} | ||
Summary: CLI for listening to internet radio stations | ||
|
||
License: MIT | ||
|
||
BuildArch: aarch64 | ||
|
||
Requires: alsa-utils, alsa-lib-devel | ||
|
||
%description | ||
Browse and listen to thousands of radio stations across the globe right from your terminal π π» π΅β¨ | ||
|
||
%prep | ||
# Prepare the build environment | ||
|
||
%build | ||
# Build steps (if any) | ||
|
||
%install | ||
mkdir -p %{buildroot}/usr/bin | ||
cp -r %{_sourcedir}/arm64/usr %{buildroot}/ | ||
|
||
%files | ||
/usr/bin/tunein |