Package Details: tuxclocker 1.5.1-1

Git Clone URL: https://aur.archlinux.org/tuxclocker.git (read-only, click to copy)
Package Base: tuxclocker
Description: Qt overclocking tool for GNU/Linux
Upstream URL: https://github.com/Lurkki14/tuxclocker
Keywords: gpu nvidia overclocking
Licenses: GPL-3.0-or-later
Submitter: murlakatamenka
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 14
Popularity: 0.45
First Submitted: 2019-02-21 13:08 (UTC)
Last Updated: 2024-02-10 17:20 (UTC)

Required by (0)

Sources (4)

Latest Comments

1 2 Next › Last »

dogmat73 commented on 2023-09-27 14:40 (UTC)

TuxClocker version 1.0.0 is out. Please update!

begin-theadventu commented on 2023-09-27 10:59 (UTC) (edited on 2023-09-27 12:10 (UTC) by begin-theadventu)

I tried to update the package hours ago, but I was not able to build it, as it fails ninja: build stopped: subcommand failed.


pkgname=tuxclocker
pkgver=1.0.0
pkgrel=1
pkgdesc="Qt overclocking tool for GNU/Linux"
arch=('x86_64')
url="https://github.com/Lurkki14/tuxclocker"
license=('GPL3')
depends=('qt5-x11extras')
optdepends=('libxnvctrl: NVIDIA' 'nvidia-utils: NVIDIA')
makedepends=('git' 'meson')
source=("git+$url.git#tag=$pkgver"
        "$pkgname.desktop")
sha256sums=('SKIP'
            '849cc7b46eab203860c69469e6c837dd0456ad5af3926c822388632a319030cf')

prepare() {
  # Submodules
  cd $pkgname
  git submodule init
  git submodule update
}

build() {
  cd $pkgname
  meson build
  cd build
  ninja
}

package() {
  cd $pkgname/build
  DESTDIR="$pkgdir" ninja install
  install -Dm644 ../$pkgname.desktop -t "$pkgdir/usr/share/applications"
}

I also tried these commands for

prepare/submodules:

git submodule update --init --recursive

build:

  arch-meson $pkgname build
  meson compile -C build

package:

 DESTDIR="$pkgdir" meson install -C build

and additional depends:

depends=('boost' 'cuda' 'libdrm' 'libdbusmenu-qt5' 'libxnvctrl' 'libx11' 'qt5-charts' 'qt5-x11extras')
optdepends=('nvidia-utils: NVIDIA')
makedepends=('cmake' 'git' 'meson')

murlakatamenka commented on 2022-04-25 05:29 (UTC)

I'll disown the package since I don't the app anymore and it seems abandoned :(

GraphZal commented on 2022-04-23 12:33 (UTC)

I have the same problem as @allexj, but am running a dedicated GPU (Radeon RX5600XT).

014 commented on 2022-02-04 23:50 (UTC)

The upstream source says this software is for Nvidia and for AMD. Would you consider making the nvidia-settings and nvidia-utils optional?

allexj commented on 2021-08-23 08:19 (UTC)

$ sudo tuxclocker QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QMetaObject::connectSlotsByName: No matching signal for on_newProfile_clicked() QMetaObject::connectSlotsByName: No matching signal for on_newProfile_closed() QMetaObject::connectSlotsByName: No matching signal for on_editProfile_closed() Segmentation fault

I have Ryzen 3500U with integrated gpu

murlakatamenka commented on 2019-11-20 16:07 (UTC)

You can remove all but qt5-x11extras from depends section of PKGBUILD and overall adjust it to follow https://github.com/Lurkki14/tuxclocker#installation-amd.

It can't be achieved within this AUR package, but you can submit a separate one or just use it yourself. Do you need some help with it?

KlavKalashj commented on 2019-11-18 20:01 (UTC)

Is there any way to get this to build without installing all the nvidia-stuff? My system is all AMD...

murlakatamenka commented on 2019-10-06 21:59 (UTC) (edited on 2019-10-06 22:32 (UTC) by murlakatamenka)

@jaap, yeah, sure, I'll update the package in a day.

edit: done! Feedback is welcome.

jaap commented on 2019-10-05 11:45 (UTC)

Could you make /usr/bin/tuxclocker a symlink to /opt/tuxclocker/bin/tuxclocker?? That is where make install puts it and it would make it compatible with building manually.