summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e4c24bd22b8a1e2e4294220ced2acde9ac725a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Maintainer: Adam Goldsmith <contact@adamgoldsmith.name>

pkgname=cura-plugin-orientation-git
_pkgname=cura-plugin-orientation
pkgver=r112.05c6a03
pkgrel=1
pkgdesc="A Cura plugin that allows you to quickly calculate and apply the best printable orientation."
arch=('any')
license=('GPL3')
url="https://github.com/nallath/CuraOrientationPlugin"
depends=('python' 'cura' 'python-zeroconf' 'python-numpy')
makedepends=('git')
source=("$_pkgname::git+https://github.com/nallath/CuraOrientationPlugin.git")
md5sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  mkdir -p "$_pkgname"/build
  cd "$_pkgname"/build
  cmake -DCMAKE_INSTALL_PREFIX=/usr ..
  make
}

package() {
  cd "$srcdir/$_pkgname/build"
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: