Package Details: antimicrox 3.3.4-3

Git Clone URL: https://aur.archlinux.org/antimicrox.git (read-only, click to copy)
Package Base: antimicrox
Description: Graphical program used to map keyboard buttons and mouse controls to a gamepad
Upstream URL: https://github.com/AntiMicroX/antimicroX
Licenses: GPL3
Conflicts: antimicro
Provides: antimicro
Replaces: antimicro
Submitter: frealgagu
Maintainer: frealgagu
Last Packager: frealgagu
Votes: 120
Popularity: 0.49
First Submitted: 2020-01-22 18:17 (UTC)
Last Updated: 2023-09-09 23:50 (UTC)

Required by (3)

Sources (1)

Pinned Comments

frealgagu commented on 2020-12-05 22:44 (UTC)

I maintain the latest built package at:

https://github.com/frealgagu/archlinux.antimicrox/releases/

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

FabioLolix commented on 2024-04-08 15:32 (UTC)

@amdlike you're welcome to not write entire pkgbuilds in the comment sections, also at first sight seems a trivial update

amdlike commented on 2024-04-08 11:01 (UTC)

Update PKGBUILD to my

# Maintainer: Fredy García <frealgagu at gmail dot com>
# Contributor: grimi <grimi at poczta dot fm>
# Contributor: Thomas Nordenmark <t.nordenmark@gmail.com>
# Contributor: Travis Nickles <nickles.travis@gmail.com>

pkgname=antimicrox
pkgver=3.4.0
pkgrel=3
pkgdesc="Graphical program used to map keyboard buttons and mouse controls to a gamepad"
arch=("aarch64" "arm" "armv6h" "armv7h" "i686" "x86_64")
url="https://github.com/AntiMicroX/${pkgname/x}X"
license=("GPL3")
depends=("hicolor-icon-theme" "libxtst" "qt5-base" "sdl2")
makedepends=("cmake" "extra-cmake-modules" "gettext" "itstool" "qt5-tools")
provides=("${pkgname/x}")
conflicts=("${pkgname/x}")
replaces=("${pkgname/x}")
source=("${pkgname}-${pkgver}${_versionpart}.tar.gz::https://github.com/AntiMicroX/${pkgname/x/X}/archive/${pkgver}${_versionpart}.tar.gz")
sha256sums=("5f7213e7a4e4c0b0237d674927e660b041357883868c6d8681f334f56d3fbe92")

build() {
  cd "${srcdir}/${pkgname}-${pkgver}${_versionpart}"

  cmake . \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_INSTALL_LIBDIR=/usr/lib \
    -DUSE_SDL_2=ON \
    -DAPPDATA=ON \
    -DWITH_UINPUT=ON \
    -DWITH_X11=ON \
    -DWITH_XTEST=ON
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}${_versionpart}"
  make DESTDIR="${pkgdir}" install
}

xiota commented on 2023-09-20 06:53 (UTC)

Please remove replaces directive. Thank you.

frealgagu commented on 2023-09-09 23:50 (UTC)

@maxlefou @FabioLolix Fixed.

FabioLolix commented on 2023-09-09 08:14 (UTC)

@frealgagu sha256sum check fails because source are not being renamed, ${_versionpart} is missing from ${pkgname}-${pkgver}.tar.gz::

maxlefou commented on 2023-09-09 07:38 (UTC)

sha256sum check fails with the new update. plz fix.

frealgagu commented on 2023-09-08 16:24 (UTC)

@nhermosilla14 cppdap is a subdependency of cmake that you should have already installed to compile any AUR package. Please make sure you have base-devel installed as stated in https://wiki.archlinux.org/title/Arch_User_Repository

nhermosilla14 commented on 2023-09-06 23:53 (UTC) (edited on 2023-09-06 23:54 (UTC) by nhermosilla14)

Please add cppdap as makedepend, at least in my system it wouldn't compile without it.

hirak99 commented on 2023-07-15 21:24 (UTC)

Ahh ok, thanks a lot! Adding a ~/.makepkg.conf with MAKEFLAGS="-j8" resolved for me.

FabioLolix commented on 2023-07-15 20:22 (UTC)

@hirak99 see https://wiki.archlinux.org/title/Makepkg#Configuration