blob: de2cd12b1846cd38a53454e4453b1caf019b231b (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Adrian Carpenter <adriatic.c@gmail.com>
pkgname=structuresynth
pkgver=1.5.0
pkgrel=5
pkgdesc="Graphics tool to make 3D structures from sets of rules, similar to Context Free."
arch=('i686' 'x86_64')
url="http://structuresynth.sourceforge.net"
license=('GPL')
depends=('qt5-base' 'qt5-script')
source=("http://downloads.sourceforge.net/structuresynth/StructureSynth-Source-v${pkgver}.zip")
md5sums=('862705c5bc9e778094046399f44d6c26')
install=${pkgname}.install
prepare() {
cd "$srcdir/Structure Synth Source Code/"
sed -i '125 { s|return false;|return NULL;| }' SyntopiaCore/GLEngine/Raytracer/VoxelStepper.cpp
_patches=("s|loose|lose|"
"s|\.\./\.\./Misc|/usr/share/$pkgname/Misc|"
"s|\.\./\.\./Examples|/usr/share/$pkgname/Examples|")
for _i in "${_patches[@]}"; do
sed -ie "$_i" StructureSynth/GUI/MainWindow.cpp
done
_patches_2=("s|QtGui/||" "s|\, QApplication::UnicodeUTF8||" )
for _i in "${_patches_2[@]}"; do
sed -ie "$_i" StructureSynth/GUI/TemplateExportDialog.h
sed -ie "$_i" StructureSynth/GUI/TemplateExportDialog.cpp
done
sed -i "2i #include <GL/glu.h>" SyntopiaCore/GLEngine/{Sphere.h,Raytracer/RayTracer.cpp}
}
build() {
cd "$srcdir/Structure Synth Source Code/"
qmake -project -after "CONFIG+=opengl" -after "QT+=xml opengl script" -after "unix:LIBS+=-lGLU -L/usr/lib64"
qmake
make
# really should use the qmake command to build this file...
cp 'Structure Synth Source Code.pro' library.pro
sed -i 's/TEMPLATE.*/TEMPLATE = lib/' library.pro
sed -i 's/TARGET.*/TARGET = ssynth/' library.pro
sed -i '7i CONFIG += staticlib' library.pro
qmake -o Makefile library.pro
make
}
package() {
cd "$srcdir/Structure Synth Source Code/"
mkdir -p "$pkgdir/usr/share/applications"
cp structure-synth.desktop "$pkgdir/usr/share/applications"
mkdir -p "$pkgdir/usr/share/icons"
cp images/fileicons/StructureSynth-256.png "$pkgdir/usr/share/icons/structure-synth.png"
mkdir -p "$pkgdir/usr/share/$pkgname"
cp -rv Examples Misc "$pkgdir/usr/share/$pkgname"
#rm -r "${pkgdir}/usr/share/${pkgname}/Examples/DontDeploy"
chmod -R 0644 "$pkgdir/usr/share/$pkgname"
chmod 0755 "$pkgdir/usr/share/$pkgname"
chmod 0755 "$pkgdir/usr/share/$pkgname/Examples"
chmod 0755 "$pkgdir/usr/share/$pkgname/Examples/Tutorials"
chmod 0755 "$pkgdir/usr/share/$pkgname/Misc"
install -Dm0755 "Structure Synth Source Code" "$pkgdir/usr/bin/structure-synth"
install -Dm0644 libssynth.a "$pkgdir/usr/lib/libssynth.a"
}
# vim:set ts=2 sw=2 et:
|