blob: 6b05840b4b325ae68bc6a2b3f728ac755448fc95 (
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
34
35
36
37
38
39
|
# Maintainer: Adam Goldsmith <contact@adamgoldsmith.name>
# Original Author: Grey Christoforo <first name [at] last name [dot] net>
pkgname=uranium-git
pkgver=3.4.1.267.g3f627aae
pkgrel=1
pkgdesc="A Python framework for building Desktop applications."
url="https://github.com/Ultimaker/Uranium"
arch=('any')
license=('GPL3')
provides=('uranium')
conflicts=('uranium')
depends=('pyqt5-common' 'qt5-quickcontrols'
'python' 'python-pyqt5' 'python-numpy' 'python-shapely' 'python-scipy'
'libarcus-git')
makedepends=('cmake' 'git')
source=('git+https://github.com/Ultimaker/Uranium.git')
md5sums=('SKIP')
pkgver() {
cd Uranium
git describe --tags | sed 's/-/./g'
}
build() {
mkdir -p Uranium/build
cd Uranium/build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd Uranium/build
make DESTDIR="${pkgdir}" install
#install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
# vim:set ts=2 sw=2 et:
|