forked from Heeks/heekscad-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.fedora
47 lines (32 loc) · 1.09 KB
/
INSTALL.fedora
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
These are the build and installation instructions on Fedora
===========================================================
System Dependencies
-------------------
Dependancies guessed from INSTALL_UBUNTU.sh:
yum install cmake python-devel wxGTK-devel boost-python boost-devel \
wxBase ftgl-devel
Dependency: heekscnc/oce
------------------------
System installation:
cd heekscnc/oce
mkdir build
cd build
cmake ..
nice make -j3
make install (as root)
Local installation: use ccmake instead of cmake, and change the
OCE_INSTALL_PREFIX variable to something local
If you want to make a package, you can use (with alien from
http://github.com/mildred/alien):
make DESTDIR=`pwd`/local-oce-git install
alien --to-rpm local-oce-git
rpm -ivh local-oce-git-1-2.noarch.rpm (as root)
Then return to the root directory:
cd ../../..
heekscad
--------
cmake -D CPACK_GENERATOR=RPM .
nice make -j3
nice make -j3 DESTDIR=`pwd`/local-heekscad-git install
alien --to-rpm local-heekscad-git
rpm -ivh local-heekscad-git-1-2.noarch.rpm (as root)