Package Details: javagui 1.0.0-1

Git Clone URL: https://aur.archlinux.org/javagui.git (read-only, click to copy)
Package Base: javagui
Description: A simple graphical application script for archlinux-java to manage your java versions.
Upstream URL: https://gitlab.com/linuxbombay/javagui
Licenses: GPL
Submitter: gameslayer
Maintainer: gameslayer
Last Packager: gameslayer
Votes: 0
Popularity: 0.000000
First Submitted: 2024-02-29 05:44 (UTC)
Last Updated: 2024-04-20 05:13 (UTC)

Latest Comments

gameslayer commented on 2024-03-01 02:29 (UTC)

Woops you are correct @yochananmarqos, thanks for pointing out my msitake, I copied another pkgbuild file and forgot to correct the dependencies. I will fix that right now.

yochananmarqos commented on 2024-02-29 17:37 (UTC)

@gameslayer: The dependencies are erroneous, they should be:

depends=('java-runtime-common' 'polkit' 'zenity')

The package() function can be greatly simplified:

package() {
    cd "$pkgname-$pkgver-$pkgrel"
    install -Dm755 "$pkgname" -t "$pkgdir/usr/bin/"
    install -Dm644 "$pkgname.desktop" -t "$pkgdir/usr/share/applications/"
}