mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 21:42:46 +01:00
59 lines
1.9 KiB
Bash
59 lines
1.9 KiB
Bash
# Maintainer: Rick van Lieshout <info@rickvanlieshout.com>
|
|
|
|
_pkgname=tidal-hifi
|
|
pkgname="$_pkgname-git"
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="The web version of listen.tidal.com running in electron with hifi support thanks to widevine."
|
|
arch=("x86_64")
|
|
url="https://github.com/Mastermindzh/tidal-hifi"
|
|
license=("custom:MIT")
|
|
|
|
depends=("libxss" "nss" "gtk3")
|
|
makedepends=("npm" "git")
|
|
provides=("$_pkgname")
|
|
|
|
source=("https://github.com/Mastermindzh/tidal-hifi/archive/$pkgver.zip"
|
|
"${_pkgname}.desktop")
|
|
sha512sums=('68fce020128b637fd37383a5afae71d2e4f3eec2d6b4bfcd7f410dcec18c91327d163deb21750e2251967a31f83b2b16092d11d3ff500a1fecd8c595448f380e'
|
|
'35f38ac308b871c1822d7f6f760f2fb54c3748cf769822cb0f0dfb90f0f5754ba9316da5e903a0d2e9839de3a43ec76f238f3f2e44021956fa1da19142081349')
|
|
|
|
|
|
|
|
cdToPkg(){
|
|
cd "tidal-hifi-$pkgver"
|
|
}
|
|
|
|
prepare() {
|
|
cdToPkg
|
|
|
|
# install build dependencies
|
|
npm install
|
|
}
|
|
|
|
build() {
|
|
cdToPkg
|
|
|
|
# We are not using the systems Electron as we need castlab's Electron.
|
|
npm run build-arch
|
|
}
|
|
|
|
package() {
|
|
cdToPkg
|
|
|
|
install -d "${pkgdir}/opt/${_pkgname}/" "${pkgdir}/usr/bin" "${pkgdir}/usr/share/doc" "${pkgdir}/usr/share/licenses"
|
|
|
|
cp -r dist/linux-unpacked/* "${pkgdir}/opt/${_pkgname}/"
|
|
chmod +x "${pkgdir}/opt/${_pkgname}/${_pkgname}"
|
|
|
|
ln -s "/opt/${_pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
|
|
|
install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"
|
|
install -Dm 644 "${srcdir}/${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
|
|
|
|
install -Dm 644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
|
install -Dm 644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
ln -s "/opt/${_pkgname}/LICENSE.electron.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.electron.txt"
|
|
ln -s "/opt/${_pkgname}/LICENSES.chromium.html" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSES.chromium.html"
|
|
}
|