summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Ivanov2020-10-13 16:24:35 +0200
committerPeter Ivanov2020-10-13 16:24:35 +0200
commit3bdf3561171271fa2321193322742c0f0e8fb98c (patch)
treec8ba01cf87a3905303a96e9279fed3db619dab52
parentf72ec4b000fc8124a931aa831582b165e108a9c7 (diff)
downloadaur-3bdf3561171271fa2321193322742c0f0e8fb98c.tar.gz
Adapted to version 2.8.0. Linker error was fixed...
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4ec632204514..b168e7f83535 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = linuxcnc-sim
pkgdesc = It can interpret G-code and simulate a CNC machine (formerly EMC2).
- pkgver = 2.7.15
+ pkgver = 2.8.0
pkgrel = 1
url = http://linuxcnc.org/
install = linuxcnc-sim.install
@@ -24,7 +24,7 @@ pkgbase = linuxcnc-sim
depends = procps-ng
depends = psmisc
depends = python2-yapps2
- source = linuxcnc::git://github.com/LinuxCNC/linuxcnc.git#tag=v2.7.15
+ source = linuxcnc::git://github.com/LinuxCNC/linuxcnc.git#tag=v2.8.0
source = linuxcnc-sim.sh
source = libtirpc.patch
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 3f527eedab79..0872a365d7f0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Alec Ari <neotheuser@ymail.com>
pkgname=linuxcnc-sim
-pkgver=2.7.15
+pkgver=2.8.0
pkgrel=1
pkgdesc="It can interpret G-code and simulate a CNC machine (formerly EMC2)."
arch=('i686' 'x86_64')
@@ -32,6 +32,8 @@ build () {
./autogen.sh
./configure --with-realtime=uspace --without-libmodbus --prefix=/usr --with-python=/usr/bin/python2.7 --enable-non-distributable=yes
+
+ sed -i "163s/char FileName/static char FileName/" hal/classicladder/files_project.c
make
}