Package Details: huggle 3.4.12-1

Git Clone URL: https://aur.archlinux.org/huggle.git (read-only, click to copy)
Package Base: huggle
Description: Anti-vandalism tool for use on MediaWiki-based projects
Upstream URL: https://en.wikipedia.org/wiki/Wikipedia:Huggle
Keywords: mediawiki wikimedia wikipedia
Licenses: GPL
Conflicts: libircclient
Submitter: sdamashek
Maintainer: AntiComposite
Last Packager: AntiComposite
Votes: 7
Popularity: 0.74
First Submitted: 2015-05-08 00:41 (UTC)
Last Updated: 2023-02-05 14:41 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

Hello71 commented on 2018-07-17 12:02 (UTC)

I did patch out the install, but there's something wrong now with PIC or somesuch related to them using shared libraries unnecessarily.

caylin commented on 2018-07-17 07:09 (UTC)

Upstream has been yelled at

If upstream won't change anything, patching the yaml-cpp lines out of CMakeLists.txt and depending on yaml-cpp works as a solution

Hello71 commented on 2018-07-13 13:17 (UTC)

upstream sucks. pushed an almost-working PKGBUILD and giving up on this crap.

Hello71 commented on 2018-04-06 14:50 (UTC)

Looking for someone to yell at upstream for being a dumbass: https://github.com/huggle/huggle3-qt-lx/issues/277

Hello71 commented on 2018-04-04 16:51 (UTC)

fixed, poorly.

katie commented on 2018-04-04 04:18 (UTC)

This package seems to install its own yaml-cpp headers into the system, which causes it to conflict with the yaml-cpp package in [community]. Please fix.

caylin commented on 2017-09-19 05:36 (UTC)

Can a maintainer please add -DWEB_ENGINE=true to the cmake line in the PKGBUILD and switch the dependency from qt5-webkit to qt5-webengine? Because webkit has issues with UTF-8 in Huggle at the moment and webengine doesn't (and because qt5-webkit is deprecated).

g360 commented on 2015-11-05 16:03 (UTC) (edited on 2015-11-06 00:31 (UTC) by g360)

It is possible to build Huggle with Qt5. But I don't know how to change the install path to "/usr". Here is the working PKGBUILD diff: --- a/PKGBUILD +++ b/PKGBUILD @@ -1,25 +1,26 @@ # Maintainer: Samuel Damashek <samuel dot damashek at gmail dot com> pkgname=huggle pkgver=3.1.18 -pkgrel=2 +pkgrel=3 pkgdesc="Huggle Anti-Vandalism tool for Wikipedia" arch=('i686' 'x86_64') url="https://en.wikipedia.org/wiki/Wikipedia:Huggle" license=('GPL') -makedepends=('qconf' 'cmake' 'qtwebkit' 'qt4') -groups=('base-devel') +depends=('qt5-webkit') +makedepends=('cmake' 'qt5-base') source=("https://github.com/huggle/huggle3-qt-lx/archive/${pkgver}.tar.gz") md5sums=('33dc2147cee192e1209d0ca1e81dcf3d') build() { cd "$srcdir/huggle3-qt-lx-$pkgver/huggle" - cmake . -DCMAKE_INSTALL_PREFIX=/usr - + ./configure --qt5 + cd huggle_release make } package() { - cd "$srcdir/huggle3-qt-lx-$pkgver/huggle" + cd "$srcdir/huggle3-qt-lx-$pkgver/huggle/huggle_release" + make DESTDIR=$pkgdir install } Not sure what to do (don't know much about CMake) to change the install path, I have tried: "cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_PREFIX_PATH=/usr" "make PREFIX=/usr" after and before configure, and: "make PREFIX=/usr DESTDIR=$pkgdir install" for the installation, but without luck. I guess a manual change in the configure file would be necessary.