File: README

package info (click to toggle)
mm3d 1.3.11-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 9,104 kB
  • sloc: cpp: 96,328; sh: 3,778; perl: 2,464; makefile: 1,255; xml: 31; ansic: 2
file content (46 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download
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
This is the README file for Maverick Model 3D

Maverick Model 3D is a 3D model editor.  It was written and tested on Linux.
It is reported to run on other Unix-like operating systems. It also runs
on Windows. See INSTALL.WIN32 for Windows-specific instructions.

It is based on Misfit Model 3D that was developed by Kevin Worcester from 2004
to 2009. Maverick Model 3D is maintained by Zack Middleton (zturtleman).

The home page is here:
   https://clover.moe/mm3d

The original project's home page is here:
   http://www.misfitcode.com/misfitmodel3d/

Maverick Model 3D requires Qt (5.x) with OpenGL support.  See the INSTALL file
for details on where to get these packages.

This program uses autoconf and automake for building from source.  What this
means is that if you are lucky you can install this program with these
easy steps:

   ./autosetup.sh
   ./configure
   make
   sudo make install

This will build a 'mm3d' executable and install it in /usr/local/bin.
Documentation will be in /usr/local/share/doc/mm3d.

On macOS 10.11+, install homebrew from http://brew.sh and run the following
commands.

   brew install autoconf automake qt
   cpan App::cpanminus # choose sudo in the interactive command
   cpanm HTML::Template --sudo
   ./autosetup.sh
   CXX='clang++ -std=c++11 -stdlib=libc++' ./configure --with-Qt-dir=/usr/local/Cellar/qt/5.11.1 --with-macosx-version-min=10.11
   make
   make mm3d.app

This will build a 'Maverick Model 3D.app' AppBundle. (macosx-version-min is
copied from /usr/local/Cellar/qt/5.11.1/mkspecs/macx-clang/qmake.conf)

For more detailed installation instructions, see the INSTALL file.
See INSTALL.WIN32 for Windows-specific instructions.