mirror of
https://github.com/Mastermindzh/tidal-hifi-aur.git
synced 2025-08-01 07:11:10 +02:00
Merge branch 'master' of github.com:Mastermindzh/tidal-hifi-aur
This commit is contained in:
32
PKGBUILD
32
PKGBUILD
@@ -13,18 +13,16 @@ provides=(tidal-hifi)
|
||||
conflicts=(tidal-hifi)
|
||||
|
||||
source=("git+https://github.com/Mastermindzh/tidal-hifi.git"
|
||||
"tidal-hifi.desktop")
|
||||
"tidal-hifi.desktop")
|
||||
sha512sums=('SKIP'
|
||||
'31cf40fb3ac81c4a64a8410a78e97c268a440577bce54347ce62f8a9566c8897f8083cd1e5afa40b0fbe9a149fc4fb4f29cad91a12e5b47cf8e300e56351a4f1')
|
||||
'31cf40fb3ac81c4a64a8410a78e97c268a440577bce54347ce62f8a9566c8897f8083cd1e5afa40b0fbe9a149fc4fb4f29cad91a12e5b47cf8e300e56351a4f1')
|
||||
|
||||
getnvm() {
|
||||
if command -v nvm
|
||||
then
|
||||
if command -v nvm; then
|
||||
echo "nvm command found, using system version.."
|
||||
else
|
||||
|
||||
if test -f "/usr/share/nvm/init-nvm.sh"
|
||||
then
|
||||
|
||||
if test -f "/usr/share/nvm/init-nvm.sh"; then
|
||||
echo "found init-nvm.sh in /usr/share/nvm, sourcing..."
|
||||
unset npm_config_prefix
|
||||
source "/usr/share/nvm/init-nvm.sh"
|
||||
@@ -49,39 +47,39 @@ pkgver() {
|
||||
|
||||
prepare() {
|
||||
getnvm
|
||||
|
||||
|
||||
cd "${srcdir}/${pkgname%-git}" || exit
|
||||
|
||||
|
||||
# use correct nodejs/npm versions
|
||||
nvm install lts/gallium
|
||||
nvm use lts/gallium
|
||||
|
||||
|
||||
# install build dependencies
|
||||
npm install
|
||||
}
|
||||
|
||||
build() {
|
||||
getnvm
|
||||
|
||||
|
||||
cd "${srcdir}/${pkgname%-git}" || exit
|
||||
|
||||
|
||||
# We are not using the systems Electron as we need castlab's Electron.
|
||||
npm run build-arch
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname%-git}" || exit
|
||||
|
||||
|
||||
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/"
|
||||
chmod +x "${pkgdir}/opt/tidal-hifi/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 "${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 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
install -Dm 644 "build/icon.png" "${pkgdir}/usr/share/icons/hicolor/0x0/apps/tidal-hifi.png"
|
||||
|
Reference in New Issue
Block a user