Skip to content

Instantly share code, notes, and snippets.

@worldwise001
Last active June 17, 2019 04:38
Show Gist options
  • Save worldwise001/b5548cf6b147d09aac4cb95de4fb4505 to your computer and use it in GitHub Desktop.
Save worldwise001/b5548cf6b147d09aac4cb95de4fb4505 to your computer and use it in GitHub Desktop.
PKGBUILD for curaengine 15.04
pkgbase=curaengine-old
pkgname=curaengine-old
pkgver=15.04.6
pkgrel=1
pkgdesc="A full software solution for 3D printing aimed at RepRaps and the Ultimaker. (the old one)"
provides=('curaengine')
conflicts=('curaengine')
url="http://blog.ultimaker.com/cura-user-manual/"
license=('AGPLv3')
arch=('i686' 'x86_64' 'armv7h')
source=(https://github.com/Ultimaker/CuraEngine/archive/15.04.6.tar.gz)
sha1sums=('4f2e3c5e74001b39cf5894a1e3f436a7724be0ae9ee30cd02bd2e3fd676ca4b1')
build()
{
cd "${srcdir}"
tar -xzf 15.04.6.tar.gz
cd CuraEngine-15.04.6/
make
}
package()
{
install -Dm755 "${srcdir}/15.04.6/CuraEngine-15.04.6/build/CuraEngine" "${pkgdir}/usr/bin/CuraEngine"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment