~ubuntu-branches/ubuntu/wily/tupi/wily-proposed

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-06-23 12:48:05 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130623124805-9xq9kggclxvli7r9
Tags: 0.2+git02-1
* New upstream release [June 2013].
  + ready for "libav9" transition.
* Build-Depends:
  + libquazip-dev
* Packaging updates:
  + added ugly override for broken upstream libav detection;
    "pkg-config" is added to Build-Depends for that matter.
  + rules simplified as upstream introduced support for $(DESTDIR).
  + re-build translations after configure.
  + re-build/re-compress man page.
  + dropped all patches.
  + updated lintian-overrides, new overrides for
    "library-not-linked-against-libc" in private libs.
  + ship all icons and docs in -data package.
  + data de-duplication in -data package.
  + debian/watch to check for tags at github as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    * build-essential: All the C/C++ free compilers, libraries and utilities
16
16
      required to create a binary from any Unix-alike C/C++ source code (gcc,
17
17
      g++, cpp, make, etc)
18
 
    * Qt 4.7.0: The full development toolkit used to create Tupi. Remember 
19
 
      to use the version 4.7.0, including development tools and libraries 
20
 
      (preview versions don't work at all).
 
18
    * Qt: The full development toolkit used to create Tupi 
21
19
    * ruby: A script language used to do the configuration process previous 
22
20
      to the compilation
23
 
    * libaspell-dev: A library to support spell revisions
24
21
    * libavcodec-dev: A subcomponent of the project ffmpeg, to deal with 
25
22
      video manipulation
26
23
    * libavformat-dev: A subcomponent of the project ffmpeg, to deal with 
27
24
      video manipulation
28
25
    * zlib-dev: A file-compression library
 
26
    * quazip: A very handy API to deal with zip files
29
27
 
30
28
For Ubuntu users (version 10.10) with some experience using the console, 
31
29
these are the commands they should run to install Tupi dependencies:
33
31
- Open a terminal (from Aplications -> Accesories) and type:
34
32
   % sudo apt-get install build-essential    [Press enter]
35
33
   % sudo apt-get install ruby    [Press enter]
36
 
   % sudo apt-get install libaspell-dev    [Press enter]
37
34
   % sudo apt-get install libavcodec-dev libavformat-dev    [Press enter]
38
35
   % sudo apt-get install libqt4-gui qt4-qmake qt4-dev-tools    [Press enter]
39
36
   % sudo apt-get install zlib1g-dev    [Press enter]
 
37
   % sudo apt-get install libquazip0-dev    [Press enter]
40
38
 
41
39
Note: If you are not using Ubuntu, check for the equivalent packages for your
42
40
Linux distro
44
42
2. Get the source code and compile it
45
43
 
46
44
- Get the Tupi source code from our Download section
47
 
  (http://www.maefloresta.com/portal/download_counter). Then, 
 
45
  (http://www.maefloresta.com/portal/downloads). Then, 
48
46
  run these commands:
49
 
   % tar xvfz tupi-0.1-gitXX.tar.gz    [Press enter]
50
 
   % cd tupi-0.1-gitXX    [Press enter]
 
47
   % tar xvfz tupi-XXX.tar.gz    [Press enter]
 
48
   % cd tupi-XXX    [Press enter]
51
49
   % ./configure --prefix=/usr/local/tupi    [Press enter]
52
50
   % make    [Press enter]
53
51
   % sudo make install    [Press enter]
69
67
installation notes with us, feel free to send us your documents.
70
68
 
71
69
Additional info: http://www.maefloresta.com
 
70