Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| openbsd [2018/02/20 04:47] – created beandog | openbsd [2019/05/24 18:09] (current) – [bluray_info] beandog | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== OpenBSD ====== | ====== OpenBSD ====== | ||
| + | |||
| + | * Tested with OpenBSD 6.5 | ||
| + | |||
| + | ==== Installation ==== | ||
| + | |||
| + | Once the system is installed, install git: | ||
| + | |||
| + | < | ||
| + | pkg_add git | ||
| + | </ | ||
| + | |||
| + | Install buildtime dependencies: | ||
| + | |||
| + | < | ||
| + | pkg_add autoconf-2.69p2 automake-1.16.1 | ||
| + | </ | ||
| ==== dvd_info ==== | ==== dvd_info ==== | ||
| - | Installs just fine once autotools, libdvdread, and libdvdcss are on the system. | + | Install runtime dependencies: |
| < | < | ||
| - | AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.15 autoreconf -fi | + | pkg_add libdvdread |
| </ | </ | ||
| + | |||
| + | Clone repo: | ||
| + | |||
| + | < | ||
| + | git clone https:// | ||
| + | </ | ||
| + | |||
| + | Version 1.0 installs just fine once autotools, libdvdread, and libdvdcss are on the system. | ||
| + | |||
| + | < | ||
| + | AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.16 autoreconf -fi | ||
| + | ./configure | ||
| + | make | ||
| + | doas make install | ||
| + | </ | ||
| + | |||
| + | Default device is ''/ | ||
| + | |||
| + | ==== bluray_info ==== | ||
| + | |||
| + | Install libraries: | ||
| + | |||
| + | < | ||
| + | pkg_add libaacs libbluray | ||
| + | </ | ||
| + | |||
| + | Clone repo: | ||
| + | |||
| + | < | ||
| + | git clone https:// | ||
| + | </ | ||
| + | |||
| + | Build with latest autoconf and automake versions: | ||
| + | |||
| + | < | ||
| + | AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.16 autoreconf -fi | ||
| + | ./configure | ||
| + | make | ||
| + | doas make install | ||
| + | </ | ||
| + | |||
| + | Run as normal! | ||