master
Mastermindzh 2022-04-21 18:24:00 +02:00
parent 656b4fb92e
commit 36ae927289
2 changed files with 21 additions and 21 deletions

View File

@ -1,6 +1,6 @@
pkgbase = tidal-hifi-git pkgbase = tidal-hifi-git
pkgdesc = The web version of listen.tidal.com running in electron with hifi support thanks to widevine. If the install fails use nvm to temporarily downgrade npm pkgdesc = The web version of listen.tidal.com running in electron with hifi support thanks to widevine. If the install fails use nvm to temporarily downgrade npm
pkgver = 2.8.0.r0.g89589b7 pkgver = 2.8.1.r0.g7f5f5e7
pkgrel = 1 pkgrel = 1
url = https://github.com/Mastermindzh/tidal-hifi url = https://github.com/Mastermindzh/tidal-hifi
arch = x86_64 arch = x86_64

View File

@ -2,7 +2,7 @@
pkgname=tidal-hifi-git pkgname=tidal-hifi-git
pkgrel=1 pkgrel=1
pkgver=2.8.0.r0.g89589b7 pkgver=2.8.1.r0.g7f5f5e7
pkgdesc="The web version of listen.tidal.com running in electron with hifi support thanks to widevine. If the install fails use nvm to temporarily downgrade npm" pkgdesc="The web version of listen.tidal.com running in electron with hifi support thanks to widevine. If the install fails use nvm to temporarily downgrade npm"
arch=(x86_64) arch=(x86_64)
url="https://github.com/Mastermindzh/tidal-hifi" url="https://github.com/Mastermindzh/tidal-hifi"
@ -13,16 +13,16 @@ provides=(tidal-hifi)
conflicts=(tidal-hifi) conflicts=(tidal-hifi)
source=("git+https://github.com/Mastermindzh/tidal-hifi.git" source=("git+https://github.com/Mastermindzh/tidal-hifi.git"
"tidal-hifi.desktop") "tidal-hifi.desktop")
sha512sums=('SKIP' sha512sums=('SKIP'
'31cf40fb3ac81c4a64a8410a78e97c268a440577bce54347ce62f8a9566c8897f8083cd1e5afa40b0fbe9a149fc4fb4f29cad91a12e5b47cf8e300e56351a4f1') '31cf40fb3ac81c4a64a8410a78e97c268a440577bce54347ce62f8a9566c8897f8083cd1e5afa40b0fbe9a149fc4fb4f29cad91a12e5b47cf8e300e56351a4f1')
getnvm() { getnvm() {
if command -v nvm if command -v nvm
then then
echo "nvm command found, using system version.." echo "nvm command found, using system version.."
else else
if test -f "/usr/share/nvm/init-nvm.sh" if test -f "/usr/share/nvm/init-nvm.sh"
then then
echo "found init-nvm.sh in /usr/share/nvm, sourcing..." echo "found init-nvm.sh in /usr/share/nvm, sourcing..."
@ -33,7 +33,7 @@ getnvm() {
unset npm_config_prefix unset npm_config_prefix
folderName=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 12) folderName=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 12)
git clone https://aur.archlinux.org/nvm.git "$folderName" git clone https://aur.archlinux.org/nvm.git "$folderName"
cd "$folderName" cd "$folderName" || exit
makepkg -si --asdeps makepkg -si --asdeps
source /usr/share/nvm/init-nvm.sh source /usr/share/nvm/init-nvm.sh
cd ../ cd ../
@ -43,45 +43,45 @@ getnvm() {
} }
pkgver() { pkgver() {
cd "${srcdir}/${pkgname%-git}" cd "${srcdir}/${pkgname%-git}" || exit
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
} }
prepare() { prepare() {
getnvm getnvm
cd "${srcdir}/${pkgname%-git}" cd "${srcdir}/${pkgname%-git}" || exit
# use correct nodejs/npm versions # use correct nodejs/npm versions
nvm install lts/gallium nvm install lts/gallium
nvm use lts/gallium nvm use lts/gallium
# install build dependencies # install build dependencies
npm install npm install
} }
build() { build() {
getnvm getnvm
cd "${srcdir}/${pkgname%-git}" cd "${srcdir}/${pkgname%-git}" || exit
# We are not using the systems Electron as we need castlab's Electron. # We are not using the systems Electron as we need castlab's Electron.
npm run build-arch npm run build-arch
} }
package() { package() {
cd "${srcdir}/${pkgname%-git}" cd "${srcdir}/${pkgname%-git}" || exit
install -d "${pkgdir}/opt/tidal-hifi/" "${pkgdir}/usr/bin" "${pkgdir}/usr/share/doc" "${pkgdir}/usr/share/licenses" install -d "${pkgdir}/opt/tidal-hifi/" "${pkgdir}/usr/bin" "${pkgdir}/usr/share/doc" "${pkgdir}/usr/share/licenses"
cp -r dist/linux-unpacked/* "${pkgdir}/opt/tidal-hifi/" cp -r dist/linux-unpacked/* "${pkgdir}/opt/tidal-hifi/"
chmod +x "${pkgdir}/opt/tidal-hifi/tidal-hifi" chmod +x "${pkgdir}/opt/tidal-hifi/tidal-hifi"
ln -s "/opt/tidal-hifi/tidal-hifi" "${pkgdir}/usr/bin/tidal-hifi" ln -s "/opt/tidal-hifi/tidal-hifi" "${pkgdir}/usr/bin/tidal-hifi"
install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/pixmaps/tidal-hifi.png" install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/pixmaps/tidal-hifi.png"
install -Dm 644 "${srcdir}/tidal-hifi.desktop" "${pkgdir}/usr/share/applications/tidal-hifi.desktop" install -Dm 644 "${srcdir}/tidal-hifi.desktop" "${pkgdir}/usr/share/applications/tidal-hifi.desktop"
install -Dm 644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md" install -Dm 644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm 644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm 644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/icons/hicolor/0x0/apps/tidal-hifi.png" install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/icons/hicolor/0x0/apps/tidal-hifi.png"