use autoconf/automake for configuration
[goodguy/history.git] / cinelerra-5.1 / README
index f19caa3c0d10da85d910522c78f0ac288a1e6ee8..851c4a3eeef8a8bc445120950b84a232b272eccb 100644 (file)
@@ -1,9 +1,44 @@
-Run ./cinelerra from this directory.  That's it.
-
-
-
-
-
 
+== for configuration help:
+./autogen.sh
+./configure --help
+
+== for static BUILD for $HOME/cin install:
+./autogen.sh
+./configure
+make >& log
+make install
+cp -a bin $HOME/cin
+
+== for shared BUILD for $HOME/cin install:
+./autogen.sh
+./configure --disable-static
+./configure
+make >& log
+make install
+cp -a bin $HOME/cin
+
+== to RUN from $HOME/cin install:
+cd
+./cin/cinelerra
+
+== Build notes:
+Shared builds are not recommended, since system versions of thirdparty
+libraries are not always known to be free of problems.  The build
+will use known (perhaps patched) libraries if built statically.
+
+The amount of time needed for the build is decreased by adding more
+build jobs via --with-jobs=#, the default is 1.5*mach cpus + 2 jobs.
+eg. --with-jobs=12
+
+There are several packages which are "forced" either because they
+vary widely between systems, or are buggy and have patches in the build.
+
+Using disable-pkg means that the static build is not used, and a system
+library will be used to replace it.  
+eg. --disable-giflib
+
+Using without-feature means that the feature is omitted from cinelerra.
+eg. --without-firewire