mirror of
https://github.com/cucumber-sp/yandex-music-linux.git
synced 2024-12-23 14:12:59 +03:00
Deb packages build script
fix
This commit is contained in:
parent
39358d959a
commit
e7cb5e9afb
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,3 +3,7 @@ out/
|
||||
app/
|
||||
|
||||
*.exe
|
||||
|
||||
arch/
|
||||
|
||||
deb/
|
||||
|
8
PKGBUILD
8
PKGBUILD
@ -3,7 +3,7 @@
|
||||
pkgname=yandexmusic
|
||||
pkgver="5.0.8"
|
||||
pkgrel="1"
|
||||
pkgdesc="Yandex Music Client"
|
||||
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")
|
||||
@ -26,13 +26,13 @@ package() {
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
install -Dm644 "$srcdir/out/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
|
||||
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"
|
||||
install -Dm644 "$srcdir/yandex-music-linux/templates/icon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
|
||||
|
||||
# Create a script to launch the app with Electron
|
||||
echo "#!/bin/sh" > "$pkgdir/usr/bin/yandexmusic"
|
||||
echo "electron /usr/lib/yandexmusic/yandexmusic.asar" >> "$pkgdir/usr/bin/yandexmusic"
|
||||
echo 'exec electron /usr/lib/yandexmusic/yandexmusic.asar "$@"' >> "$pkgdir/usr/bin/yandexmusic"
|
||||
chmod 755 "$pkgdir/usr/bin/yandexmusic"
|
||||
}
|
||||
|
183
build_deb.sh
Normal file
183
build_deb.sh
Normal file
@ -0,0 +1,183 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
usage() {
|
||||
echo "Usage: $(basename "$0") [-h] [-a <x64|armv7l|arm64|all> default=x64]"
|
||||
echo
|
||||
echo " Options:"
|
||||
echo " -a Architecture to build for (<x64|armv7l|arm64|all> default=x64)"
|
||||
echo " -h Show this help and exit"
|
||||
}
|
||||
|
||||
x64=1
|
||||
armv7l=0
|
||||
arm64=0
|
||||
|
||||
#checking for arch option (if not specified set x64) and h option
|
||||
while getopts :a:h name; do
|
||||
case $name in
|
||||
a)
|
||||
case $OPTARG in
|
||||
x64)
|
||||
x64=1
|
||||
;;
|
||||
armv7l)
|
||||
armv7l=1
|
||||
x64=0
|
||||
;;
|
||||
arm64)
|
||||
arm64=1
|
||||
x64=0
|
||||
;;
|
||||
all)
|
||||
x64=1
|
||||
armv7l=1
|
||||
arm64=1
|
||||
;;
|
||||
*)
|
||||
echo "Invalid architecture specified"
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
h)
|
||||
usage
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
clear() {
|
||||
rm -rf "$TEMPDIR"
|
||||
}
|
||||
TEMPDIR="$(mktemp -d)"
|
||||
trap clear EXIT
|
||||
|
||||
#loading version info with jq
|
||||
version=$(jq -r '.version' version_info.json)
|
||||
exe_name=$(jq -r '.exe_name' version_info.json)
|
||||
exe_link=$(jq -r '.exe_link' version_info.json)
|
||||
exe_sha256=$(jq -r '.exe_sha256' version_info.json)
|
||||
|
||||
#downloading exe
|
||||
echo "Downloading $exe_name"
|
||||
curl -L -o "$TEMPDIR/$exe_name" "$exe_link"
|
||||
|
||||
#checking sha256
|
||||
echo "Checking sha256"
|
||||
echo "$exe_sha256 $TEMPDIR/$exe_name" | sha256sum -c
|
||||
|
||||
echo "Repaking $exe_name"
|
||||
./repack.sh -o "$TEMPDIR/app" "$TEMPDIR/$exe_name"
|
||||
|
||||
#downloading electron binaries
|
||||
if [ $x64 -eq 1 ]; then
|
||||
echo "Downloading electron x64"
|
||||
curl -L -o "$TEMPDIR/electron-x64.zip" "https://github.com/electron/electron/releases/download/v27.3.0/electron-v27.3.0-linux-x64.zip"
|
||||
unzip -q "$TEMPDIR/electron-x64.zip" -d "$TEMPDIR/electron-x64"
|
||||
fi
|
||||
|
||||
if [ $armv7l -eq 1 ]; then
|
||||
echo "Downloading electron armv7l"
|
||||
curl -L -o "$TEMPDIR/electron-armv7l.zip" "https://github.com/electron/electron/releases/download/v27.3.0/electron-v27.3.0-linux-armv7l.zip"
|
||||
unzip -q "$TEMPDIR/electron-armv7l.zip" -d "$TEMPDIR/electron-armv7l"
|
||||
fi
|
||||
|
||||
if [ $arm64 -eq 1 ]; then
|
||||
echo "Downloading electron arm64"
|
||||
curl -L -o "$TEMPDIR/electron-arm64.zip" "https://github.com/electron/electron/releases/download/v27.3.0/electron-v27.3.0-linux-arm64.zip"
|
||||
unzip -q "$TEMPDIR/electron-arm64.zip" -d "$TEMPDIR/electron-arm64"
|
||||
fi
|
||||
|
||||
mkdir -p "deb"
|
||||
|
||||
#bulding packages
|
||||
if [ $x64 -eq 1 ]; then
|
||||
echo "Building x64 package"
|
||||
pkgdir="$TEMPDIR/yandexmusic-x64"
|
||||
|
||||
mkdir -p "$pkgdir/DEBIAN"
|
||||
cp "./templates/control" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%version%/$version/g" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%arch%/amd64/g" "$pkgdir/DEBIAN/control"
|
||||
|
||||
mkdir -p "$pkgdir/usr/lib/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/share/licenses/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/pixmaps"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
install -Dm644 "$TEMPDIR/app/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
|
||||
install -Dm644 "$TEMPDIR/app/favicon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
|
||||
install -Dm644 "./templates/desktop" "$pkgdir/usr/share/applications/yandexmusic.desktop"
|
||||
install -Dm644 "./LICENSE.md" "$pkgdir/usr/share/licenses/yandexmusic/LICENSE"
|
||||
mv "$TEMPDIR/electron-x64/" "$pkgdir/usr/lib/yandexmusic/electron"
|
||||
|
||||
echo "#!/bin/sh" > "$pkgdir/usr/bin/yandexmusic"
|
||||
echo 'exec /usr/lib/yandexmusic/electron/electron /usr/lib/yandexmusic/yandexmusic.asar "$@"' >> "$pkgdir/usr/bin/yandexmusic"
|
||||
chmod 755 "$pkgdir/usr/bin/yandexmusic"
|
||||
|
||||
dpkg-deb --build "$pkgdir" "deb/yandexmusic_${version}_amd64.deb"
|
||||
fi
|
||||
|
||||
if [ $armv7l -eq 1 ]; then
|
||||
echo "Building armv7l package"
|
||||
pkgdir="$TEMPDIR/yandexmusic-armv7l"
|
||||
|
||||
mkdir -p "$pkgdir/DEBIAN"
|
||||
cp "./templates/control" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%version%/$version/g" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%arch%/armhf/g" "$pkgdir/DEBIAN/control"
|
||||
|
||||
mkdir -p "$pkgdir/usr/lib/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/share/licenses/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/pixmaps"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
install -Dm644 "$TEMPDIR/app/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
|
||||
install -Dm644 "$TEMPDIR/app/favicon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
|
||||
install -Dm644 "./templates/desktop" "$pkgdir/usr/share/applications/yandexmusic.desktop"
|
||||
install -Dm644 "./LICENSE.md" "$pkgdir/usr/share/licenses/yandexmusic/LICENSE"
|
||||
mv "$TEMPDIR/electron-armv7l/" "$pkgdir/usr/lib/yandexmusic/electron"
|
||||
|
||||
echo "#!/bin/sh" > "$pkgdir/usr/bin/yandexmusic"
|
||||
echo 'exec /usr/lib/yandexmusic/electron/electron /usr/lib/yandexmusic/yandexmusic.asar "$@"' >> "$pkgdir/usr/bin/yandexmusic"
|
||||
chmod 755 "$pkgdir/usr/bin/yandexmusic"
|
||||
|
||||
dpkg-deb --build "$pkgdir" "deb/yandexmusic_${version}_armhf.deb"
|
||||
fi
|
||||
|
||||
if [ $arm64 -eq 1 ]; then
|
||||
echo "Building arm64 package"
|
||||
pkgdir="$TEMPDIR/yandexmusic-arm64"
|
||||
|
||||
mkdir -p "$pkgdir/DEBIAN"
|
||||
cp "./templates/control" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%version%/$version/g" "$pkgdir/DEBIAN/control"
|
||||
sed -i "s/%arch%/arm64/g" "$pkgdir/DEBIAN/control"
|
||||
|
||||
mkdir -p "$pkgdir/usr/lib/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/share/licenses/yandexmusic"
|
||||
mkdir -p "$pkgdir/usr/share/pixmaps"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
install -Dm644 "$TEMPDIR/app/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
|
||||
install -Dm644 "$TEMPDIR/app/favicon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
|
||||
install -Dm644 "./templates/desktop" "$pkgdir/usr/share/applications/yandexmusic.desktop"
|
||||
install -Dm644 "./LICENSE.md" "$pkgdir/usr/share/licenses/yandexmusic/LICENSE"
|
||||
mv "$TEMPDIR/electron-arm64/" "$pkgdir/usr/lib/yandexmusic/electron"
|
||||
|
||||
echo "#!/bin/sh" > "$pkgdir/usr/bin/yandexmusic"
|
||||
echo 'exec /usr/lib/yandexmusic/electron/electron /usr/lib/yandexmusic/yandexmusic.asar "$@"' >> "$pkgdir/usr/bin/yandexmusic"
|
||||
chmod 755 "$pkgdir/usr/bin/yandexmusic"
|
||||
|
||||
dpkg-deb --build "$pkgdir" "deb/yandexmusic_${version}_arm64.deb"
|
||||
fi
|
@ -3,7 +3,7 @@
|
||||
pkgname=yandexmusic
|
||||
pkgver="%version%"
|
||||
pkgrel="%release%"
|
||||
pkgdesc="Yandex Music Client"
|
||||
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")
|
||||
@ -26,8 +26,8 @@ package() {
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
install -Dm644 "$srcdir/out/yandexmusic.asar" "$pkgdir/usr/lib/yandexmusic/yandexmusic.asar"
|
||||
install -Dm644 "$srcdir/out/favicon.png" "$pkgdir/usr/share/pixmaps/yandexmusic.png"
|
||||
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"
|
||||
|
||||
|
11
templates/control
Normal file
11
templates/control
Normal file
@ -0,0 +1,11 @@
|
||||
Package: yandexmusic
|
||||
Version: %version%
|
||||
Section: sound
|
||||
Priority: optional
|
||||
Architecture: %arch%
|
||||
Maintainer: Andrey Onischenko <loraner123@gmail.com>
|
||||
Depends: libgtk-3-0, libnotify4, libnss3, libxtst6, xdg-utils, libatspi2.0-0, libdrm2, libgbm1, libxcb-dri3-0, kde-cli-tools | kde-runtime | trash-cli | libglib2.0-bin | gvfs-bin
|
||||
Recommends: pulseaudio | libasound2
|
||||
Suggests: gir1.2-gnomekeyring-1.0, libgnome-keyring0, lsb-release
|
||||
Homepage: https://github.com/cucumber-sp/yandex-music-linux
|
||||
Description: Yandex Music - Personal recommendations, selections for any occasion and new music
|
Loading…
Reference in New Issue
Block a user