Date: Sunday, November 18, 2018 @ 11:46:36 Author: jelle Revision: 408691
archrelease: copy trunk to extra-any Added: cura-binary-data/repos/extra-any/ cura-binary-data/repos/extra-any/PKGBUILD (from rev 408690, cura-binary-data/trunk/PKGBUILD) ----------+ PKGBUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) Copied: cura-binary-data/repos/extra-any/PKGBUILD (from rev 408690, cura-binary-data/trunk/PKGBUILD) =================================================================== --- extra-any/PKGBUILD (rev 0) +++ extra-any/PKGBUILD 2018-11-18 11:46:36 UTC (rev 408691) @@ -0,0 +1,20 @@ +# Maintainer: Jelle van der Waa <je...@archlinux.org> +# Contributor: Grey Christoforo <my first name [at] my last name [dot] net> + +pkgname=cura-binary-data +pkgver=3.6.0 +pkgrel=1 +pkgdesc="Binary data (firmwares and such) for cura" +url="https://github.com/Ultimaker/${pkgname}" +license=('AGPL') +arch=('any') +source=(https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz) +sha1sums=('350c77ea9686a8651eddf7e256729a02bdf0e072') + +package(){ + install -d "${pkgdir}/usr/share/" + cp -r "${srcdir}/${pkgname}-${pkgver}/cura/" "${pkgdir}/usr/share/cura" + + # see https://github.com/Ultimaker/cura-binary-data/issues/6 + rm -rf "${pkgdir}/usr/share/cura/resources/i18n" +}