Package Details: pcsc-cyberjack 3.99.5_SP16-1

Git Clone URL: https://aur.archlinux.org/pcsc-cyberjack.git (read-only, click to copy)
Package Base: pcsc-cyberjack
Description: PCSC Driver for Reiner SCT cyberjack Cardreaders
Upstream URL: https://forum.reiner-sct.com/index.php?/forum/59-cyberjack-treiber-f%C3%BCr-linux/
Licenses: LGPL
Conflicts: ctapi-cyberjack
Replaces: ctapi-cyberjack
Submitter: ChrDr
Maintainer: ChrDr
Last Packager: ChrDr
Votes: 43
Popularity: 0.28
First Submitted: 2011-05-26 16:05 (UTC)
Last Updated: 2024-02-25 20:26 (UTC)

Latest Comments

1 2 3 4 5 Next › Last »

gatonero commented on 2024-02-26 07:56 (UTC)

Thanks now it can be installed without any problem.

ChrDr commented on 2024-02-25 20:28 (UTC)

Updated to version 3.99.5_SP16

ChrDr commented on 2023-09-13 21:18 (UTC)

Well, I have just rebuilt the package from scratch in a clean chroot. It was built without any problems. And the resulting package could also be installed without problems.

And what do you mean by "doesn't give any output"? You did not get any output when trying to build it? Or you did not get any output when trying to install it?

Please specify what you did exactly, what you expected, and what was the result of your attempt.

gatonero commented on 2023-09-05 20:38 (UTC)

This paket doesn't install and doesn't give any output.

ChrDr commented on 2022-05-01 18:13 (UTC)

Sorry, the notification went to my spam folder ... I adapted the PKGBUILD yesterday, but was not able to push the change (git push suddenly failed although it had worked previously ...)

Unfortunately I will not be able to dig into that in the next few days.

Therefore, in the meantime, please use this patch:

diff --git a/PKGBUILD b/PKGBUILD
index dd0d42b..6e1e2d3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Christoph Drexler <chrdr at gmx dot at>

 pkgname=pcsc-cyberjack
-_sp=SP14
+_sp=SP15
 pkgver=3.99.5_${_sp}
 _pkgver=3.99.5final.${_sp}
 pkgrel=1
@@ -13,8 +13,8 @@ replaces=('ctapi-cyberjack')
 conflicts=('ctapi-cyberjack')
 depends=('libusb' 'pcsclite')
 options=('!libtool' '!docs')
-source=("http://support.reiner-sct.de/downloads/LINUX/V${pkgver}/pcsc-cyberjack_${_pkgver}.tar.gz")
-sha256sums=('625348b36ab8b2de78fa4a04b23c6eb7168ca5ba4aeccaf7c6a9f55db39d1529')
+source=("https://support.reiner-sct.de/downloads/LINUX/V${pkgver}/pcsc-cyberjack_${_pkgver}.tar.bz2")
+sha256sums=('acb7c2832450718756713767c4b3ef500832d652ed51b35110b910b11ebd467a')

 prepare() {
     cd "${pkgname}-${_pkgver}"

norse commented on 2022-04-26 07:07 (UTC)

Has this package been abandoned, because there has not been any reaction on the out-of-date flagging (by a different user) since April 9th ?

Reason for the ood-flagging: Package should provide the current version (SP15), which according to its tar-content is from Nov 3, 2021

ChrDr commented on 2020-06-25 22:15 (UTC)

Updated to version 3.99.5_SP14. I am sorry for the delay, I was quite busy during the last days.

kbkeller commented on 2020-06-20 12:25 (UTC) (edited on 2020-06-21 11:25 (UTC) by kbkeller)

Version 14 builds normally without any patches.

Here would be the new PKGBUILD:

http://130.61.243.125/PKGBUILD.cyberjack

I do not know how the syntax works, so just go ahead and download it from my server.

cagliostro commented on 2020-06-17 18:56 (UTC)

There is a new package available: http://support.reiner-sct.de/downloads/LINUX/V3.99.5_SP14/pcsc-cyberjack_3.99.5final.SP14.tar.gz I would appreciate an update. Thanx in advance!

migerh commented on 2020-06-10 20:34 (UTC) (edited on 2020-06-10 20:34 (UTC) by migerh)

Compiling this package gave an error on an up-to-date x64 Arch system. Problem was a -Wnarrowing error in ifd.cpp. Deactivating the warning helped me installing this package. It seems to work with my RFID comfort and AusweisApp2. Here's the patch if you want to apply it:

diff --git a/PKGBUILD b/PKGBUILD
index 79a4d1b..0db34a6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ pkgname=pcsc-cyberjack
 _sp=SP13
 pkgver=3.99.5_${_sp}
 _pkgver=3.99.5final.${_sp}
-pkgrel=1
+pkgrel=2
 pkgdesc="PCSC Driver for Reiner SCT cyberjack Cardreaders"
 arch=('i686' 'x86_64')
 url="https://forum.reiner-sct.com/index.php?/forum/59-cyberjack-treiber-f%C3%BCr-linux/"
@@ -25,7 +25,7 @@ prepare() {
 build() {
     cd "${pkgname}-${_pkgver}"

-    ./configure \
+    CPPFLAGS=-Wno-narrowing ./configure \
         --prefix=/usr \
         --mandir=/usr/share/man/man8 \
         --sysconfdir=/etc/"${pkgname}"  \