mirror of
				https://github.com/cucumber-sp/yandex-music-linux.git
				synced 2025-10-30 19:37:12 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Maintainer: Andrey Onischenko loraner123@gmail.com
 | |
| 
 | |
| pkgname=yandexmusic
 | |
| pkgver="5.0.9"
 | |
| pkgrel="1"
 | |
| pkgdesc="Yandex Music - Personal recommendations, selections for any occasion and new music"
 | |
| arch=("any")
 | |
| url="https://github.com/cucumber-sp/yandex-music-linux"
 | |
| license=("custom")
 | |
| depends=("electron" "libpulse")
 | |
| makedepends=("p7zip" "nodejs" "jq")
 | |
| 
 | |
| source=("https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.0.9.exe" "git+https://github.com/cucumber-sp/yandex-music-linux")
 | |
| sha256sums=("686898f9a2f663d3ac22395eb0fa8073908003710d756fe60affef3ca1f7b1e8" "SKIP")
 | |
| 
 | |
| prepare() {
 | |
|     npm install @electron/asar;
 | |
| }
 | |
| 
 | |
| build() {
 | |
|     sh "$srcdir/yandex-music-linux/repack.sh" "$srcdir/Yandex_Music_x64_5.0.9.exe"
 | |
| }
 | |
| 
 | |
| package() {
 | |
|     mkdir -p "$pkgdir/usr/lib/yandexmusic"
 | |
|     mkdir -p "$pkgdir/usr/share/applications"
 | |
|     mkdir -p "$pkgdir/usr/bin"
 | |
| 
 | |
|     install -Dm644 "$srcdir/app/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
 | |
|     install -Dm644 "$srcdir/app/favicon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
 | |
|     install -Dm644 "$srcdir/yandex-music-linux/templates/desktop" "$pkgdir/usr/share/applications/yandexmusic.desktop"
 | |
|     install -Dm644 "$srcdir/yandex-music-linux/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 | |
| 
 | |
|     # Create a script to launch the app with Electron
 | |
|     echo "#!/bin/sh" > "$pkgdir/usr/bin/yandexmusic"
 | |
|     echo 'exec electron /usr/lib/yandexmusic/yandexmusic.asar "$@"' >> "$pkgdir/usr/bin/yandexmusic"
 | |
|     chmod 755 "$pkgdir/usr/bin/yandexmusic"
 | |
| }
 |