From fee0adc018cffb60656fe5fce49b091e7dd9c27e Mon Sep 17 00:00:00 2001 From: ardahzr Date: Sun, 22 Feb 2026 03:25:13 +0300 Subject: [PATCH] Initial upload: lmp-bin 1.0.0 - Spotify-inspired GTK3 music player --- .SRCINFO | 20 ++++++++++++++++++++ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000000000..2b60d327082f7 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = lmp-bin + pkgdesc = Spotify-inspired dark-theme GTK3 music player for Linux with YouTube & Spotify download + pkgver = 1.0.0 + pkgrel = 1 + url = https://github.com/ardahzr/linux-mp3-youtube + arch = x86_64 + license = MIT + depends = mpg123 + depends = libpulse + depends = gtk3 + depends = yt-dlp + depends = ffmpeg + optdepends = libnotify: desktop notifications + provides = lmp + conflicts = lmp + options = !strip + source = MP3Player-linux-x64-1.0.0::https://github.com/ardahzr/linux-mp3-youtube/releases/download/v1.0.0/MP3Player-linux-x64 + sha256sums = 8963b198a3a3a0f7cb0caeb6b966173f419d01974c3982acab3fb98b2cfe7036 + +pkgname = lmp-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..4ee1e33d77e14 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: ardahzr +pkgname=lmp-bin +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Spotify-inspired dark-theme GTK3 music player for Linux with YouTube & Spotify download" +arch=('x86_64') +url="https://github.com/ardahzr/linux-mp3-youtube" +license=('MIT') +depends=('mpg123' 'libpulse' 'gtk3' 'yt-dlp' 'ffmpeg') +optdepends=('libnotify: desktop notifications') +provides=('lmp') +conflicts=('lmp') +source=("MP3Player-linux-x64-${pkgver}::https://github.com/ardahzr/linux-mp3-youtube/releases/download/v${pkgver}/MP3Player-linux-x64") +sha256sums=('8963b198a3a3a0f7cb0caeb6b966173f419d01974c3982acab3fb98b2cfe7036') +options=('!strip') + +package() { + install -Dm755 "${srcdir}/MP3Player-linux-x64-${pkgver}" "${pkgdir}/usr/bin/lmp" + + # Desktop entry + install -Dm644 /dev/stdin "${pkgdir}/usr/share/applications/lmp.desktop" <