2019-12-02 22:24:29 +01:00
# Maintainer: Rick van Lieshout <info@rickvanlieshout.com>
2021-06-26 16:03:22 +02:00
pkgname = tidal-hifi-git
2021-12-19 13:44:15 +01:00
pkgrel = 1
2022-02-17 16:45:33 +01:00
pkgver = 2.7.2.r0.g101fe96
2021-11-29 23:38:52 +01:00
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"
2021-06-26 16:03:22 +02:00
arch = ( x86_64)
2019-12-02 22:24:29 +01:00
url = "https://github.com/Mastermindzh/tidal-hifi"
license = ( "custom:MIT" )
2021-06-26 16:03:22 +02:00
depends = ( libxss nss gtk3)
2021-12-04 13:04:17 +01:00
makedepends = ( git)
2021-06-26 16:03:22 +02:00
provides = ( tidal-hifi)
conflicts = ( tidal-hifi)
source = ( "git+https://github.com/Mastermindzh/tidal-hifi.git"
"tidal-hifi.desktop" )
sha512sums = ( 'SKIP'
'31cf40fb3ac81c4a64a8410a78e97c268a440577bce54347ce62f8a9566c8897f8083cd1e5afa40b0fbe9a149fc4fb4f29cad91a12e5b47cf8e300e56351a4f1' )
2021-12-04 13:04:17 +01:00
getnvm( ) {
if command -v nvm
then
echo "nvm command found, using system version.."
else
2021-12-19 13:44:15 +01:00
if test -f "/usr/share/nvm/init-nvm.sh"
then
echo "found init-nvm.sh in /usr/share/nvm, sourcing..."
2021-12-28 17:57:13 +01:00
unset npm_config_prefix
2021-12-19 13:44:15 +01:00
source "/usr/share/nvm/init-nvm.sh"
else
echo "nvm could not be found, installing"
unset npm_config_prefix
folderName = $( cat /dev/urandom | tr -cd 'a-f0-9' | head -c 12)
git clone https://aur.archlinux.org/nvm.git " $folderName "
cd " $folderName "
makepkg -si --asdeps
source /usr/share/nvm/init-nvm.sh
cd ../
rm -rf " $folderName "
fi
2021-12-04 13:04:17 +01:00
fi
}
2021-06-26 16:03:22 +02:00
pkgver( ) {
cd " ${ srcdir } / ${ pkgname %-git } "
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
2019-12-02 22:24:29 +01:00
}
prepare( ) {
2021-12-04 13:04:17 +01:00
getnvm
2021-06-26 16:03:22 +02:00
cd " ${ srcdir } / ${ pkgname %-git } "
2019-12-02 22:24:29 +01:00
2021-12-04 13:04:17 +01:00
# use correct nodejs/npm versions
nvm install lts/gallium
nvm use lts/gallium
2019-12-02 22:24:29 +01:00
# install build dependencies
npm install
}
build( ) {
2021-12-23 17:57:53 +01:00
getnvm
2021-06-26 16:03:22 +02:00
cd " ${ srcdir } / ${ pkgname %-git } "
2019-12-02 22:24:29 +01:00
# We are not using the systems Electron as we need castlab's Electron.
2020-10-05 11:19:22 +02:00
npm run build-arch
2019-12-02 22:24:29 +01:00
}
package( ) {
2021-06-26 16:03:22 +02:00
cd " ${ srcdir } / ${ pkgname %-git } "
2019-12-02 22:24:29 +01:00
2021-06-26 16:03:22 +02:00
install -d " ${ pkgdir } /opt/tidal-hifi/ " " ${ pkgdir } /usr/bin " " ${ pkgdir } /usr/share/doc " " ${ pkgdir } /usr/share/licenses "
2019-12-02 22:24:29 +01:00
2021-06-26 16:03:22 +02:00
cp -r dist/linux-unpacked/* " ${ pkgdir } /opt/tidal-hifi/ "
chmod +x " ${ pkgdir } /opt/tidal-hifi/tidal-hifi "
2019-12-02 22:24:29 +01:00
2021-06-26 16:03:22 +02:00
ln -s "/opt/tidal-hifi/tidal-hifi" " ${ pkgdir } /usr/bin/tidal-hifi "
2019-12-02 22:24:29 +01:00
2021-06-26 16:03:22 +02:00
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 "
2019-12-02 22:24:29 +01:00
install -Dm 644 "README.md" " ${ pkgdir } /usr/share/doc/ ${ pkgname } /README.md "
install -Dm 644 "LICENSE" " ${ pkgdir } /usr/share/licenses/ ${ pkgname } /LICENSE "
2021-06-27 22:17:51 +02:00
install -Dm 644 "build/icon.png" " ${ pkgdir } /usr/share/icons/hicolor/0x0/apps/tidal-hifi.png "
2021-06-26 16:03:22 +02:00
ln -s "/opt/tidal-hifi/LICENSE.electron.txt" " ${ pkgdir } /usr/share/licenses/ ${ pkgname } /LICENSE.electron.txt "
ln -s "/opt/tidal-hifi/LICENSES.chromium.html" " ${ pkgdir } /usr/share/licenses/ ${ pkgname } /LICENSES.chromium.html "
2019-12-02 22:24:29 +01:00
}