summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Hentschel (hpmachining)2022-03-21 15:29:32 -0400
committerPaul Hentschel (hpmachining)2022-03-21 15:29:32 -0400
commit5528a76e46b746f2c4e305a1d10c354a1102d669 (patch)
treef7b6c6f260ca616b01d4e05335a0f666790be5a2
parent9e161c250450c63376d14d035c1d4458ca0e28e3 (diff)
downloadaur-5528a76e46b746f2c4e305a1d10c354a1102d669.tar.gz
Fixed packaging issue.
Fixed an issue with the packaging function that was causing a clean chroot build to fail. I had to remove the linkflags option from the scons command in the packaging function.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 216a8614c727..025e71a0edf5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = camotics
pkgdesc = 3-axis NC machining simulation software
pkgver = 1.2.0
- pkgrel = 3
+ pkgrel = 4
url = https://camotics.org/
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index 135f5adf197e..2e4c0a31ce24 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=camotics
pkgver=1.2.0
-pkgrel=3
+pkgrel=4
pkgdesc="3-axis NC machining simulation software"
arch=('x86_64')
url="https://camotics.org/"
@@ -39,7 +39,7 @@ build() {
package() {
cd "CAMotics-$pkgver"
- CBANG_HOME=/opt/cbang scons install install_prefix="$pkgdir/usr" linkflags=$LDFLAGS
+ CBANG_HOME=/opt/cbang scons install install_prefix="$pkgdir/usr"
install -d "$pkgdir/usr/share/$pkgname"/tpl_lib
cp -a tpl_lib/ "$pkgdir/usr/share/$pkgname"