Package Details: qt-sudo 2.3.0-1

Git Clone URL: https://aur.archlinux.org/qt-sudo.git (read-only, click to copy)
Package Base: qt-sudo
Description: A clone of LXQt sudo tool, without LXQt libs
Upstream URL: https://github.com/aarnt/qt-sudo.git
Licenses: LGPL2.1
Submitter: matmoul
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 512
Popularity: 1.23
First Submitted: 2024-03-11 02:38 (UTC)
Last Updated: 2025-12-29 16:21 (UTC)

Latest Comments

1 2 3 Next › Last »

AlieeLinux commented on 2026-07-13 12:09 (UTC)

theres a qt-sudo-git.

FredBezies commented on 2026-06-27 15:27 (UTC)

Here is a working PKGBUILD update.

# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: MatMoul <matmoul at the google email domain which is .com>

pkgname=qt-sudo
pkgver=2.4.0
pkgrel=1
pkgdesc='A clone of LXQt sudo tool, without LXQt libs'
arch=('x86_64')
url='https://github.com/aarnt/qt-sudo.git'
license=('LGPL-2.1-or-later')
depends=(
  'gcc-libs' # libgcc_s.so libstdc++.so
  'glibc' # libc.so
  'qt6-base' # libQt6Core.so libQt6Gui.so libQt6Widgets.so
  'sudo'
)
makedepends=(
  'git'
  'qt6-tools'
)
source=("git+https://github.com/aarnt/qt-sudo.git#tag=v${pkgver}")
sha256sums=('e8adc845fa68d17c3ed666f78397b8e6aec76c56924beb43c480a4a507f6c38a')

build() {
  cd qt-sudo
  echo "Starting build..."
  qmake6 \
    PREFIX="${pkgdir}/usr" \
    QMAKE_CFLAGS="${CFLAGS}" \
    QMAKE_CXXFLAGS="${CXXFLAGS}" \
    QMAKE_LFLAGS="${LDFLAGS}"

  make
}

package() {
  cd qt-sudo
  make install
  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

mrbigmouth502 commented on 2026-05-27 00:58 (UTC) (edited on 2026-05-27 01:05 (UTC) by mrbigmouth502)

FYI, it's easy to edit the PKGBUILD to download and build version 2.4.0 instead of 2.3.0.

Just change the pkgver= line like so:

pkgver=2.4.0

hiraki commented on 2026-02-26 08:39 (UTC)

To make this package compliant with Arch RFC 0016, would you mind updating the LICENSE field as follows?

license=('LGPL-2.1-or-later')

sl1pkn07 commented on 2025-12-29 16:11 (UTC) (edited on 2025-12-29 17:50 (UTC) by sl1pkn07)

update later. sorry

done

Kicker0429 commented on 2025-12-26 02:12 (UTC)

@micwoj92, let's give @sl1pkn07 a bit more time to respond before we label qt-sudo orphaned.

micwoj92 commented on 2025-12-24 18:16 (UTC)

https://wiki.archlinux.org/title/AUR_submission_guidelines#Orphan

Kicker0429 commented on 2025-12-24 17:57 (UTC)

@qtgzmanager, if @sl1pkn07 does not respond, then would you consider maintaining the AUR package?

qtgzmanager commented on 2025-12-20 13:33 (UTC)

Hi sl1pkn07!

aarnt here, author of Octopi.

It's important to update qt-sudo to the latest version, 2.3.0, to fix some errors in Plasma sessions.

Thank you for maintaining the package!

Mailaender commented on 2025-09-26 19:48 (UTC)

https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot solved it.