-
-
Notifications
You must be signed in to change notification settings - Fork 20
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 #5 from rosmo/deb-package
Add Debian packaging
- Loading branch information
Showing
6 changed files
with
99 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
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 @@ | ||
linamp (1.1.0) bookworm; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- Taneli Leppä <[email protected]> Tue, 18 Jun 2024 14:00:21 +0200 |
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,41 @@ | ||
Source: linamp | ||
Section: Sound | ||
Priority: optional | ||
Maintainer: Rodrigo Méndez <[email protected]> | ||
Rules-Requires-Root: no | ||
Build-Depends: | ||
debhelper-compat (= 13), | ||
qt6-base-dev, | ||
qt6-base-dev-tools, | ||
qt6-multimedia-dev, | ||
qtcreator, | ||
cmake, | ||
libtag1-dev, | ||
libasound2-dev, | ||
libpulse-dev, | ||
libpipewire-0.3-dev, | ||
libdbus-1-dev, | ||
libiso9660-dev, | ||
libcdio-dev, | ||
libcdio-utils, | ||
swig, | ||
python3-dev | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/Rodmg/linamp | ||
Vcs-Browser: https://github.com/Rodmg/linamp | ||
Vcs-Git: https://github.com/Rodmg/linamp.git | ||
|
||
Package: linamp | ||
Architecture: any | ||
Depends: | ||
${shlibs:Depends}, | ||
${misc:Depends}, | ||
vlc, | ||
python3-full, | ||
python3-libdiscid, | ||
python3-musicbrainzngs, | ||
python3-cdio, | ||
python3-vlc | ||
Description: Music player app for Linamp - Your favorite music player of the 90s, but in real life. | ||
Music player app for Linamp - Your favorite music player of the 90s, but in real life. Built | ||
with QT6. |
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,16 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Source: <https://github.com/Rodmg/linamp> | ||
Upstream-Name: linamp | ||
Upstream-Contact: Rodrigo Méndez <[email protected]> | ||
|
||
Files: | ||
* | ||
Copyright: | ||
2024 Rodrigo Méndez <[email protected]> | ||
License: See LICENSE in parent directory | ||
|
||
Files: | ||
debian/* | ||
Copyright: | ||
2024 Taneli Leppä <[email protected]> | ||
License: See LICENSE in parent directory |
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,21 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_build: | ||
qmake6 -makefile | ||
make | ||
|
||
override_dh_auto_configure: | ||
echo "Skipped" | ||
|
||
override_dh_auto_install: | ||
mkdir -p debian/linamp/usr/bin | ||
cp player debian/linamp/usr/bin/linamp-player | ||
|
||
mkdir -p debian/linamp/usr/share/applications/ | ||
cp linamp.desktop debian/linamp/usr/share/applications/ | ||
|
||
mkdir -p debian/linamp/usr/share/icons/hicolor/72x72/apps/ | ||
cp assets/logoButton.png debian/linamp/usr/share/icons/hicolor/72x72/apps/linamp-player.png |
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,10 @@ | ||
[Desktop Entry] | ||
Version=1.0 | ||
Name=Linamp | ||
Comment=Music player app for Linamp - Your favorite music player of the 90s, but in real life. | ||
Exec=/usr/bin/linamp-player %U | ||
Icon=/usr/share/icons/hicolor/72x72/apps/linamp-player.png | ||
Terminal=false | ||
#StartupWMClass=name of application | ||
Type=Application | ||
Categories=Audio |