Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
openbsd [2018/02/19 21:48]
beandog
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 ====
 +
 +Install runtime dependencies:​
 +
 +<​code>​
 +pkg_add libdvdread
 +</​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. Version 1.0 installs just fine once autotools, libdvdread, and libdvdcss are on the system.
  
 <​code>​ <​code>​
-AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.15 autoreconf -fi+AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.16 autoreconf -fi 
 +./​configure 
 +make 
 +doas make install
 </​code>​ </​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!

Navigation