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