Package Details: revanced-builder 3.9.3-1

Git Clone URL: https://aur.archlinux.org/revanced-builder.git (read-only, click to copy)
Package Base: revanced-builder
Description: A NodeJS ReVanced builder
Upstream URL: https://github.com/reisxd/revanced-builder
Licenses: GPL-3.0
Submitter: maltejur
Maintainer: maltejur
Last Packager: maltejur
Votes: 3
Popularity: 0.000652
First Submitted: 2022-09-05 10:25 (UTC)
Last Updated: 2023-05-18 07:07 (UTC)

Latest Comments

maltejur commented on 2023-04-24 13:20 (UTC)

@IsaacJReay thanks, I've applied those suggestions

IsaacJReay commented on 2023-04-24 11:15 (UTC) (edited on 2023-04-24 11:18 (UTC) by IsaacJReay)

Please update your PKGBUILD to replace all uses of move (mv) with cp or install. Moved item after built became links, which will fail to run if we clear cache or delete the original build directory.

Example
...
#mv -v $pkgname-$pkgver "$pkgdir/opt/$pkgname"
#mv -v revanced-builder.sh "$pkgdir/usr/bin/revanced-builder"
#mv -v revanced-builder.desktop "$pkgdir/usr/share/applications"
#mv -v revanced.png "$pkgdir/usr/share/icons/hicolor/64x64/apps"
cp -r "${srcdir}/${pkgname}-${pkgver}" "${pkgdir}/opt/${pkgname}"
install -Dm755 "${srcdir}/revanced-builder.sh" "${pkgdir}/usr/bin/revanced-builder"
install -Dm644 "${srcdir}/revanced-builder.desktop" "${pkgdir}/usr/share/applications"
install -Dm644 "${srcdir}/revanced.png" "${pkgdir}/usr/share/icons/hicolor/64x64/apps"
...

maltejur commented on 2022-11-10 12:33 (UTC)

@SimPilotAdamT I can reproduce the same issue, although only on the first start of the program after reboot. Does the same apply to your issue or does it happen every time?

SimPilotAdamT commented on 2022-11-10 12:15 (UTC)

So the electron version just shows a white screen inside the electron window on my end... Is that an upstream issue or smth here?