Package Details: wacom-utility 1.21-10

Git Clone URL: https://aur.archlinux.org/wacom-utility.git (read-only, click to copy)
Package Base: wacom-utility
Description: Graphical Wacom tablet configuration utility. (Does not work for newer wacom tablets; latest update was in 2011.)
Upstream URL: https://www.linux-apps.com/content/show.php/Wacom+Control+Panel?content=104309
Licenses: GPL-2.0-or-later
Submitter: None
Maintainer: alerque
Last Packager: alerque
Votes: 87
Popularity: 0.104488
First Submitted: 2009-06-26 17:39 (UTC)
Last Updated: 2025-03-20 08:21 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

hexadecagram commented on 2014-05-27 04:31 (UTC)

During install: error: failed to commit transaction (conflicting files) wacom-utility: /usr/share/applications exists in filesystem

<deleted-account> commented on 2014-03-25 20:35 (UTC)

Added Anonymous' PKGBUILD and disowned.

aelius commented on 2014-03-25 04:20 (UTC)

deb2targz was removed from official repos in 2011, flagging as out of date.

<deleted-account> commented on 2012-02-07 20:08 (UTC)

Here is my PKGBUILD using the .tar.gz: pkgname=wacom-utility pkgver=1.21 pkgrel=3 pkgdesc="Graphical tablet configuration utility" arch=('i686' 'x86_64') url="http://gtk-apps.org/content/show.php/Wacom+Control+Panel?content=104309&PHPSESSID=e1fe54f464f2242b5d1f6c3661757ebf" license=('GPL') depends=('gtk2' 'python2' 'pygtk' 'xf86-input-wacom' 'gksu') source=("http://ppa.launchpad.net/hughescih/ppa/ubuntu/pool/main/w/${pkgname}/${pkgname}_${pkgver}-3.tar.gz" wacom-utility.desktop) md5sums=('51ff9257b6e0c511ee57d40cd76742ec' '1d44b3571fd5e48b80b2dec5209fcf47') build() { tar xvf ${pkgname}_${pkgver}-3.tar.gz rm ${pkgname}_${pkgver}-3.tar.gz rm -r ${srcdir}/${pkgname}/*.pyc rm -r ${srcdir}/${pkgname}/debian rm ${srcdir}/${pkgname}/wacom-utility.desktop mkdir -p ${pkgdir}/usr/share/applications cp wacom-utility.desktop ${pkgdir}/usr/share/applications cp -r ${srcdir}/${pkgname} ${pkgdir}/usr/share }

giniu commented on 2012-01-28 09:59 (UTC)

Again, why use .deb for debian/ubuntu when there is cross-distribution .tar.gz ? http://ppa.launchpad.net/hughescih/ppa/ubuntu/pool/main/w/wacom-utility/wacom-utility_1.21-3.tar.gz

worldwise001 commented on 2012-01-28 02:23 (UTC)

deb2targz is no longer in the official repo: http://mailman.archlinux.org/pipermail/arch-dev-public/2011-December/022212.html Here's an updated PKGBUILD using ar instead: pkgname=wacom-utility pkgver=1.21 pkgrel=3 pkgdesc="Graphical tablet configuration utility" arch=('i686' 'x86_64') url="http://gtk-apps.org/content/show.php/Wacom+Control+Panel?content=104309&PHPSESSID=e1fe54f464f2242b5d1f6c3661757ebf" license=('GPL') depends=('gtk2' 'python2' 'xf86-input-wacom' 'gksu') makedepends=('binutils') source=("https://launchpad.net/~hughescih/+archive/ppa/+files/${pkgname}_${pkgver}-3_all.deb" wacom-utility.desktop) md5sums=('179a3a33cd5c2592f5cb0211203df940' '1d44b3571fd5e48b80b2dec5209fcf47') build() { ar xv ${pkgname}_${pkgver}-3_all.deb cd ${srcdir} tar xvf data.tar.gz tar xvf control.tar.gz cd .. cp -r ${srcdir}/usr ${pkgdir}/usr cp ${srcdir}/wacom-utility.desktop ${pkgdir}/usr/share/applications }

biginoz commented on 2011-09-13 05:13 (UTC)

updated & It's work!

mrenn commented on 2011-07-22 00:05 (UTC)

v1.21: Traceback (most recent call last): File "/usr/share/wacom-utility/wacom_utility.py", line 6, in <module> import gtk ImportError: No module named gtk It must call python2 instead of python

<deleted-account> commented on 2011-05-17 14:40 (UTC)

PKGBUILD for the latest version (1.21). Still using the .deb here pkgname=wacom-utility pkgver=1.21 pkgrel=1 pkgdesc="Graphical tablet configuration utility" arch=('i686' 'x86_64') url="http://gtk-apps.org/content/show.php/Wacom+Control+Panel?content=104309&PHPSESSID=e1fe54f464f2242b5d1f6c3661757ebf" license=('GPL') depends=('gtk2' 'python' 'xf86-input-wacom') makedepends=('deb2targz') source=("https://launchpad.net/~hughescih/+archive/ppa/+files/${pkgname}_${pkgver}-3_all.deb") md5sums=('179a3a33cd5c2592f5cb0211203df940') build() { deb2targz ${pkgname}_${pkgver}-3_all.deb tar xvf ${pkgname}_${pkgver}-3_all.tar.gz rm ${pkgname}_${pkgver}-3_all.tar.gz cp -r ${srcdir}/usr ${pkgdir}/usr }