Package Details: gpx-git 2.2.1.r196.d903700-1

Git Clone URL: https://aur.archlinux.org/gpx-git.git (read-only, click to copy)
Package Base: gpx-git
Description: A post processing utility for converting gcode to x3g
Upstream URL: https://github.com/markwal/GPX
Licenses: GPL
Conflicts: gpx
Provides: gpx
Submitter: nickoe
Maintainer: nickoe (ZafiRUS)
Last Packager: ZafiRUS
Votes: 3
Popularity: 0.000000
First Submitted: 2014-01-27 19:42 (UTC)
Last Updated: 2016-08-04 10:54 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

nickoe commented on 2018-06-05 08:07 (UTC)

@jerry73204, this package is not out of date, this is a git package.

nickoe commented on 2016-08-04 10:27 (UTC)

@ZafiRUS, I have added you as co-maintainer, feel free to update it.

ZafiRUS commented on 2016-08-04 09:46 (UTC) (edited on 2016-08-04 10:52 (UTC) by ZafiRUS)

Upstream https://github.com/whpthomas/GPX looks forgotten, https://github.com/markwal/GPX is much more recent. Does not build with recent makepkg, so new syntax PKGBUILD: pkgname=gpx-git pkgver=2.2.1.r196.d903700 pkgrel=1 pkgdesc="A post processing utility for converting gcode to x3g" arch=('i686' 'x86_64') url="https://github.com/markwal/GPX" license=('GPL') makedepends=('git') conflicts=("${pkgname%-git}") source=('gpx::git+https://github.com/markwal/GPX.git') md5sums=('SKIP') pkgver() { cd "$srcdir/${pkgname%-git}" # Git, tags available printf "%s" "$(git describe --long | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g')" } build() { cd "$srcdir/${pkgname%-git}" mkdir build cd build ../configure --prefix=/usr make } package() { cd "$srcdir/${pkgname%-git}/build" make DESTDIR="$pkgdir/" install }

bartus commented on 2016-02-22 14:27 (UTC) (edited on 2016-02-22 14:28 (UTC) by bartus)

should update to new makepkg which now supports git sources. 11 source=('git+https://github.com/whpthomas/GPX') 12 md5sums=('SKIP') 13 14 _gitname=GPX 15 16 pkgver() { 17 cd "${_gitname}" 18 printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" 19 } 20 21 build() { 22 cd "${_gitname}" 23 make 24 } 25 26 package() { 27 cd "${_gitname}" 28 make PREFIX="${pkgdir}/usr" install 29 }