summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Hentschel (hpmachining)2022-03-14 18:44:48 -0400
committerPaul Hentschel (hpmachining)2022-03-14 18:44:48 -0400
commit4d28bfafef5c4cded9ec32ccbdc7f4adbcbc6e53 (patch)
tree4ee589b202cdaf81719fa41251f41f14d2b70487
parent1b316ac64ed542491b6bb6eb978e26a0fd93b018 (diff)
downloadaur-4d28bfafef5c4cded9ec32ccbdc7f4adbcbc6e53.tar.gz
Removed unnecessary commands in package function.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD12
2 files changed, 2 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0326374eef96..90e2649c92f5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = camotics-git
pkgdesc = 3-axis NC machining simulation software
pkgver = r953.9963b38
- pkgrel = 1
+ pkgrel = 2
url = http://camotics.org/
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index 880abb14385a..0947a132d8b8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=camotics-git
pkgver=r953.9963b38
-pkgrel=1
+pkgrel=2
pkgdesc="3-axis NC machining simulation software"
arch=('x86_64')
url="http://camotics.org/"
@@ -47,16 +47,6 @@ build() {
package() {
cd "${pkgname%-*}"
CBANG_HOME=/opt/cbang scons install cxxstd="c++14" install_prefix="$pkgdir/usr" linkflags=$LDFLAGS
-
- install -d "$pkgdir/usr/share/${pkgname%-*}"/tpl_lib
- cp -a tpl_lib/ "$pkgdir/usr/share/${pkgname%-*}"
- install -Dm644 -t "$pkgdir"/usr/share/applications CAMotics.desktop
- install -Dm644 -t "$pkgdir"/usr/share/pixmaps images/camotics.png
- install -Dm644 -t "$pkgdir/usr/share/doc/${pkgname%-*}" README.md CHANGELOG.md COPYING LICENSE
-
- # install examples and machines
- install -d "$pkgdir/usr/share/doc/${pkgname%-*}"/{examples,machines}
- cp -a {examples/,machines/} "$pkgdir/usr/share/doc/${pkgname%-*}"
}
# vim:set ts=2 sw=2 et: