Package Details: gpib-utils-git r254.720b17d-1

Git Clone URL: https://aur.archlinux.org/gpib-utils-git.git (read-only, click to copy)
Package Base: gpib-utils-git
Description: GPIB instrument support utilities latest from master branch
Upstream URL: https://github.com/garlick/gpib-utils
Licenses: GPLv2
Conflicts: gpib-utils
Provides: gpib-utils
Submitter: greyltc
Maintainer: greyltc
Last Packager: greyltc
Votes: 0
Popularity: 0.000000
First Submitted: 2016-09-15 12:32 (UTC)
Last Updated: 2016-09-15 12:32 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

grimler commented on 2020-02-11 12:41 (UTC)

I got it to compile with libtirpc by applying this patch to the PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index b012390..e114cd0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,7 +22,7 @@ pkgver() {
 prepare() {
   cd "${srcdir}/${_gitname}"
   ./autogen.sh
-  ./configure --prefix=${pkgdir}/usr
+  ./configure --prefix=${pkgdir}/usr CFLAGS=" -I/usr/include/tirpc -Wno-pointer-compare -Wno-parentheses" CPPFLAGS=" -I/usr/include/tirpc" LDFLAGS=" -lgfxdr -ltirpc"
 }

 build() {

(this definitely is not the proper fix for this)