Package Details: globalplatform 7.4.0-2

Git Clone URL: https://aur.archlinux.org/globalplatform.git (read-only, click to copy)
Package Base: globalplatform
Description: GlobalPlatform libraries
Upstream URL: https://github.com/kaoh/globalplatform
Licenses: GPL3
Submitter: gst
Maintainer: None
Last Packager: micwoj92
Votes: 10
Popularity: 0.000000
First Submitted: 2008-12-22 11:44 (UTC)
Last Updated: 2024-02-14 17:57 (UTC)

Latest Comments

ejona86 commented on 2021-12-14 00:27 (UTC)

cmake is missing from makedepends.

mikatammi commented on 2017-06-13 14:13 (UTC)

Package does not build with OpenSSL version 1.1.0 To build against extra/openssl-1.0 package, replace openssl with openssl-1.0 in depends, and in prepare()-section change the configuration line to have CPPFLAGS="-I/usr/include/openssl-1.0" LDFLAGS="-L/usr/lib/openssl-1.0" before the ./configure, eg: CPPFLAGS="-I/usr/include/openssl-1.0" LDFLAGS="-L/usr/lib/openssl-1.0" ./configure --prefix=/usr --sysconfdir=/etc

viraptor commented on 2015-03-18 03:48 (UTC)

Building this package breaks because of missing "package()" function. Fixed build/package functions: build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc msg "Patching Makefiles" sed -i 's/gnu-ldl/gnu/g' Makefile src/Makefile make || return 1 } package() { cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install || return 1 }