summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:17:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:17:32 +0000
commitb0aad0a966223e66badae8998b35500741e8a7a3 (patch)
treecf49334f2e02738f47dbd09c413b74c248c4901a /INSTALL
parentInitial commit. (diff)
downloadlibdvdcss-b0aad0a966223e66badae8998b35500741e8a7a3.tar.xz
libdvdcss-b0aad0a966223e66badae8998b35500741e8a7a3.zip
Adding upstream version 1.4.3.upstream/1.4.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL67
1 files changed, 67 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..fb78a2d
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,67 @@
+INSTALL file for libdvdcss, a DVD access library
+
+
+Configuring libdvdcss
+=====================
+
+A typical way to configure libdvdcss is:
+
+ ./configure --prefix=/usr
+
+See `./configure --help' for more information.
+
+
+If you got libdvdcss from its version control system, please bootstrap first:
+
+ autoreconf -i
+
+
+Building libdvdcss
+==================
+
+Once configured, run `make' to build libdvdcss.
+
+If you have player keys, you need to put them in the file csskeys.h, before
+configuring libdvdcss to enable the "key" method (the one from libcss).
+
+
+Installing libdvdcss
+====================
+
+You can install libdvdcss by typing:
+
+ make install
+
+
+Building libdvdcss for Windows
+==============================
+
+There are two alternative ways to build libdvdcss for Windows.
+
+- on a host with the mingw-w64 cross-compilers:
+
+ Tell configure about the compiler to use. If you run, for example, Debian,
+ Ubuntu, or Cygwin under Windows with the necessary mingw64 packages
+ installed, it would be:
+
+ for a 32-bit target platform:
+ ./configure --host=i686-w64-mingw32
+ make
+
+ or for a 64-bit target platform:
+ ./configure --host=x86_64-w64-mingw32
+ make
+
+- natively on Windows with MSYS + MinGW (www.mingw.org):
+
+ (MSYS is a minimal build environment to compile Unixish projects under
+ Windows. It provides all the common Unix tools like sh, GNU Make...)
+
+ You will need to download and install the latest MSYS and MinGW.
+
+ To build libdvdcss you just have to run the following commands:
+
+ ./configure
+ make
+
+ More about MSYS on our wiki: http://wiki.videolan.org/Win32CompileMSYS