Compare commits

..

No commits in common. "c1a999af2f38a5663e08f49fd06d78f1b8e0a462" and "bdc296a02c2e124dfe0b66912b8f254caec9d638" have entirely different histories.

2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,7 @@
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.5.0.r0.g662ef6a pkgver = 2.5.0.r0.g662ef6a
pkgrel = 2 pkgrel = 1
url = https://github.com/Mastermindzh/tidal-hifi url = https://github.com/Mastermindzh/tidal-hifi
arch = x86_64 arch = x86_64
license = custom:MIT license = custom:MIT

View File

@ -1,7 +1,7 @@
# Maintainer: Rick van Lieshout <info@rickvanlieshout.com> # Maintainer: Rick van Lieshout <info@rickvanlieshout.com>
pkgname=tidal-hifi-git pkgname=tidal-hifi-git
pkgrel=2 pkgrel=1
pkgver=2.5.0.r0.g662ef6a pkgver=2.5.0.r0.g662ef6a
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)
@ -24,13 +24,12 @@ getnvm() {
else else
echo "nvm could not be found, installing" echo "nvm could not be found, installing"
unset npm_config_prefix unset npm_config_prefix
folderName=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 12) git clone https://aur.archlinux.org/nvm.git .nvmdep
git clone https://aur.archlinux.org/nvm.git "$folderName" cd .nvmdep
cd "$folderName"
makepkg -si --asdeps makepkg -si --asdeps
source /usr/share/nvm/init-nvm.sh source /usr/share/nvm/init-nvm.sh
cd ../ cd ../
rm -rf "$folderName" rm -rf .nvmdep
fi fi
} }