Use unix end-of-line.
--HG-- branch : develop
This commit is contained in:
parent
6425468708
commit
ea01838816
192
README.txt
192
README.txt
|
@ -1,96 +1,96 @@
|
||||||
Pattern making program
|
Pattern making program
|
||||||
Author Roman Telezhynskyi <dismine(at)gmail.com>
|
Author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
Copyright (C) 2013-2015 Valentina project
|
Copyright (C) 2013-2015 Valentina project
|
||||||
Valentina Web page: http://www.valentina-project.org/
|
Valentina Web page: http://www.valentina-project.org/
|
||||||
Valentina user manual https://bitbucket.org/dismine/valentina/wiki/manual/Content
|
Valentina user manual https://bitbucket.org/dismine/valentina/wiki/manual/Content
|
||||||
Valentina main repository: https://bitbucket.org/dismine/valentina/overview
|
Valentina main repository: https://bitbucket.org/dismine/valentina/overview
|
||||||
Valentina mail list (forum) https://groups.google.com/forum/#!forum/valentina-project-list
|
Valentina mail list (forum) https://groups.google.com/forum/#!forum/valentina-project-list
|
||||||
PPA for Ubuntu (develop): https://launchpad.net/~dismine/+archive/valentina-dev
|
PPA for Ubuntu (develop): https://launchpad.net/~dismine/+archive/valentina-dev
|
||||||
Help translate https://www.transifex.com/organization/valentina
|
Help translate https://www.transifex.com/organization/valentina
|
||||||
|
|
||||||
Valentina
|
Valentina
|
||||||
==========
|
==========
|
||||||
Valentina is a cross-platform patternmaking program which allows designers
|
Valentina is a cross-platform patternmaking program which allows designers
|
||||||
to create and model patterns of clothing. This software allows pattern
|
to create and model patterns of clothing. This software allows pattern
|
||||||
creation, using either standard sizing tables or an individual’s set of
|
creation, using either standard sizing tables or an individual’s set of
|
||||||
measurements. It blends new technologies with traditional methods to create
|
measurements. It blends new technologies with traditional methods to create
|
||||||
a unique pattern making tool.
|
a unique pattern making tool.
|
||||||
|
|
||||||
Supported Platforms
|
Supported Platforms
|
||||||
===================
|
===================
|
||||||
The standalone binary packages support the following platforms:
|
The standalone binary packages support the following platforms:
|
||||||
|
|
||||||
Windows XP SP2 (32-bit) or later
|
Windows XP SP2 (32-bit) or later
|
||||||
Ubuntu Linux 14.04 (32-bit/64-bit) or later
|
Ubuntu Linux 14.04 (32-bit/64-bit) or later
|
||||||
OpenSUSE 13.02 (32-bit/64-bit) or later
|
OpenSUSE 13.02 (32-bit/64-bit) or later
|
||||||
Fedora 20 (32-bit/64-bit) or later
|
Fedora 20 (32-bit/64-bit) or later
|
||||||
Mac OS X 10.7 (64-bit) or later
|
Mac OS X 10.7 (64-bit) or later
|
||||||
|
|
||||||
Building the sources requires Qt 5.2.0 or later.
|
Building the sources requires Qt 5.2.0 or later.
|
||||||
|
|
||||||
Compiling Valentina
|
Compiling Valentina
|
||||||
====================
|
====================
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
* Qt 5.2.0 or later (On Unix development packages needed)
|
* Qt 5.2.0 or later (On Unix development packages needed)
|
||||||
* mercurial (only for working with repository)
|
* mercurial (only for working with repository)
|
||||||
* On Unix:
|
* On Unix:
|
||||||
- ccache
|
- ccache
|
||||||
- g++ (at least GCC 4.6 is needed and GCC 4.8 is recommended) or
|
- g++ (at least GCC 4.6 is needed and GCC 4.8 is recommended) or
|
||||||
clang (clang 3.4 recommended)
|
clang (clang 3.4 recommended)
|
||||||
- xpdf package (tool pdftops).
|
- xpdf package (tool pdftops).
|
||||||
* On Windows:
|
* On Windows:
|
||||||
- MinGW
|
- MinGW
|
||||||
- Xpdf is an open source viewer for Portable Document Format (PDF)
|
- Xpdf is an open source viewer for Portable Document Format (PDF)
|
||||||
files. Website http://www.foolabs.com/xpdf/. Put tool pdftops.exe
|
files. Website http://www.foolabs.com/xpdf/. Put tool pdftops.exe
|
||||||
in the same directory with Valentina's binary file.
|
in the same directory with Valentina's binary file.
|
||||||
|
|
||||||
The installed toolchains have to match the one Qt was compiled with.
|
The installed toolchains have to match the one Qt was compiled with.
|
||||||
|
|
||||||
You can build Valentina with
|
You can build Valentina with
|
||||||
|
|
||||||
cd $SOURCE_DIRECTORY
|
cd $SOURCE_DIRECTORY
|
||||||
qmake Valentina.pro -r (or qmake-qt5, depending on your platform)
|
qmake Valentina.pro -r (or qmake-qt5, depending on your platform)
|
||||||
make (or mingw32-make or nmake or jom, depending on your platform)
|
make (or mingw32-make or nmake or jom, depending on your platform)
|
||||||
|
|
||||||
Note:In order to build and use Valentina, the PATH environment variable
|
Note:In order to build and use Valentina, the PATH environment variable
|
||||||
needs to be extended:
|
needs to be extended:
|
||||||
|
|
||||||
PATH - to locate qmake, moc and other Qt tools
|
PATH - to locate qmake, moc and other Qt tools
|
||||||
This is done by adding c:\Qt\%VERSION%\bin to the PATH variable.
|
This is done by adding c:\Qt\%VERSION%\bin to the PATH variable.
|
||||||
|
|
||||||
For newer versions of Windows, PATH can be extended through the
|
For newer versions of Windows, PATH can be extended through the
|
||||||
Control Panel|System|Advanced|Environment variables menu.
|
Control Panel|System|Advanced|Environment variables menu.
|
||||||
|
|
||||||
You may also need to ensure that the locations of your compiler and
|
You may also need to ensure that the locations of your compiler and
|
||||||
other build tools are listed in the PATH variable. This will depend on
|
other build tools are listed in the PATH variable. This will depend on
|
||||||
your choice of software development environment.
|
your choice of software development environment.
|
||||||
|
|
||||||
Unix systems:
|
Unix systems:
|
||||||
Default prefix for command "make install" is /usr. For using another
|
Default prefix for command "make install" is /usr. For using another
|
||||||
prefix build with qmake command:
|
prefix build with qmake command:
|
||||||
|
|
||||||
qmake PREFIX=/usr/local PREFIX_LIB=/usr/lib/i386-linux-gnu Valentina.pro -r
|
qmake PREFIX=/usr/local PREFIX_LIB=/usr/lib/i386-linux-gnu Valentina.pro -r
|
||||||
|
|
||||||
where /usr/local is a new prefix for installation binary files and /usr/lib/i386-linux-gnu is new prefix for install libraries.
|
where /usr/local is a new prefix for installation binary files and /usr/lib/i386-linux-gnu is new prefix for install libraries.
|
||||||
|
|
||||||
More about creation installers read in articles:
|
More about creation installers read in articles:
|
||||||
* How create Windows installer - https://bitbucket.org/dismine/valentina/wiki/developers/Creation_Windows_installer
|
* How create Windows installer - https://bitbucket.org/dismine/valentina/wiki/developers/Creation_Windows_installer
|
||||||
* How create debian package - https://bitbucket.org/dismine/valentina/wiki/developers/Creation_deb_package
|
* How create debian package - https://bitbucket.org/dismine/valentina/wiki/developers/Creation_deb_package
|
||||||
|
|
||||||
LICENSING
|
LICENSING
|
||||||
==========
|
==========
|
||||||
Valentina is free software: you can redistribute it and/or modify
|
Valentina is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
Valentina is distributed in the hope that it will be useful,
|
Valentina is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
See LICENSE_GPL.txt file for further information
|
See LICENSE_GPL.txt file for further information
|
||||||
|
|
||||||
Other components released under:
|
Other components released under:
|
||||||
* QMuParser - BSD license
|
* QMuParser - BSD license
|
||||||
* VPropertyExplorer - LGPLv2.1 license
|
* VPropertyExplorer - LGPLv2.1 license
|
||||||
|
|
Loading…
Reference in New Issue
Block a user