diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-07-07 14:41:04 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-07-07 14:41:04 +0200 |
commit | 38bf686e2efa2a524b10231ca443b64b422416b5 (patch) | |
tree | a505cdc4c86a8bdd530efeff64edfc1bf5a43749 /uranium/PKGBUILD | |
parent | 05e839595d3df23eafb5ee2e6ca58d0f1eddcd61 (diff) | |
download | archlinuxewe-38bf686e2efa2a524b10231ca443b64b422416b5.tar.xz |
uranium: removed
Diffstat (limited to 'uranium/PKGBUILD')
-rw-r--r-- | uranium/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/uranium/PKGBUILD b/uranium/PKGBUILD deleted file mode 100644 index 5d3c4bef2..000000000 --- a/uranium/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Erich Eckner <arch at eckner dot net> -# Contributor: Jelle van der Waa <jelle@vdwaa.nl> -# Contributor: Maxime Gauduin <alucryd@archlinux.org> -# Contributor: Grey Christoforo <first name [at] last name [dot] net> - -pkgname=uranium -pkgver=5.0.0 -pkgrel=2 -pkgdesc="Python framework for building 3D printing related applications" -url="https://github.com/Ultimaker/Uranium" -arch=('any') -license=('LGPL') -depends=('python' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'python-pyqt5' 'python-numpy' - 'arcus' 'python-shapely' 'python-scipy' 'python-cryptography' 'python-certifi') -makedepends=('cmake' 'ninja') -checkdepends=('mypy' 'python-pytest' 'python-twisted') -options=('debug') -source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz") -sha256sums=('3a6482c0698320ecb87f41f725565fdee1e99cb4258043130816d5181ead8603') - -prepare() { - cd Uranium-${pkgver} - sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt -} - -build() { - cmake -S Uranium-${pkgver} -B build -G Ninja \ - -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_INSTALL_PREFIX=/usr - - cmake --build build -} - -check() { - cd build - # all tests fail atm - # ctest -} - -package() { - DESTDIR="${pkgdir}" cmake --install build - -# Move cmake module to right dir - mv "$pkgdir"/usr/share/cmake{-*,} -} - -# vim:set ts=2 sw=2 et: |