2024-01-29 22:45:51 +03:00
|
|
|
# Maintainer: Andrey Onischenko loraner123@gmail.com
|
|
|
|
|
2024-02-14 14:07:10 +03:00
|
|
|
pkgname=yandex-music
|
2024-01-30 16:19:10 +03:00
|
|
|
pkgver="%version%"
|
|
|
|
pkgrel="%release%"
|
2024-01-31 16:47:17 +03:00
|
|
|
pkgdesc="Yandex Music - Personal recommendations, selections for any occasion and new music"
|
2024-01-29 23:48:42 +03:00
|
|
|
arch=("any")
|
2024-01-29 21:41:52 +03:00
|
|
|
url="https://github.com/cucumber-sp/yandex-music-linux"
|
2024-01-29 23:48:42 +03:00
|
|
|
license=("custom")
|
2024-02-18 18:52:45 +03:00
|
|
|
depends=("electron27" "libpulse" "xdg-utils")
|
2024-02-09 17:35:17 +03:00
|
|
|
makedepends=("p7zip" "nodejs" "asar" "jq" "python")
|
2024-01-29 21:41:52 +03:00
|
|
|
|
2024-01-30 18:07:57 +03:00
|
|
|
source=("%exe_link%" "git+https://github.com/cucumber-sp/yandex-music-linux")
|
|
|
|
sha256sums=("%exe_sha256%" "SKIP")
|
2024-01-29 23:48:42 +03:00
|
|
|
|
|
|
|
build() {
|
2024-01-30 18:07:57 +03:00
|
|
|
sh "$srcdir/yandex-music-linux/repack.sh" "$srcdir/%exe_name%"
|
2024-01-29 23:48:42 +03:00
|
|
|
}
|
2024-01-29 21:41:52 +03:00
|
|
|
|
|
|
|
package() {
|
2024-02-14 14:07:10 +03:00
|
|
|
mkdir -p "$pkgdir/usr/lib/yandex-music"
|
2024-01-29 21:41:52 +03:00
|
|
|
mkdir -p "$pkgdir/usr/share/applications"
|
|
|
|
mkdir -p "$pkgdir/usr/bin"
|
|
|
|
|
2024-02-14 14:07:10 +03:00
|
|
|
install -Dm644 "$srcdir/app/yandex-music.asar" "$pkgdir/usr/lib/yandex-music/yandex-music.asar"
|
|
|
|
install -Dm644 "$srcdir/app/favicon.png" "$pkgdir/usr/share/pixmaps/yandex-music.png"
|
|
|
|
install -Dm644 "$srcdir/yandex-music-linux/templates/desktop" "$pkgdir/usr/share/applications/yandex-music.desktop"
|
2024-01-30 18:07:57 +03:00
|
|
|
install -Dm644 "$srcdir/yandex-music-linux/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
2024-01-29 21:41:52 +03:00
|
|
|
|
|
|
|
# Create a script to launch the app with Electron
|
2024-02-14 14:07:10 +03:00
|
|
|
echo "#!/bin/sh" > "$pkgdir/usr/bin/yandex-music"
|
2024-02-18 18:52:45 +03:00
|
|
|
echo 'exec electron27 /usr/lib/yandex-music/yandex-music.asar "$@"' >> "$pkgdir/usr/bin/yandex-music"
|
2024-02-14 14:07:10 +03:00
|
|
|
chmod 755 "$pkgdir/usr/bin/yandex-music"
|
2024-01-29 21:41:52 +03:00
|
|
|
}
|