-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathINSTALL
49 lines (41 loc) · 1.25 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
I've tried my best to port this to a lot of x86 and x86_64 systems on
various operating systems, so it should just build and run out of the
box. Check out https://dvds.beandog.org/ for latest build instructions
on your OS.
bluray_info doesn't package the autotools components with the source code,
so you will need to rebuild them if manually building it. You will also
need pkg-config installed.
You can see bluray_device.h to see which OSes it's been ported and tested
for. If it's listed in there, it will use the default optical drive.
If you want to use bluray_player, libmpv must be installed on the system,
and then add '--with-libmpv' to './configure'
Linux
-----
Assuming automake and autoconf are already installed:
# autoreconf -fi
# ./configure
# make
# make install
Gentoo Linux
------------
# emerge bluray_info
NetBSD
------
You will have needed to install pkgsrc first.
# pkgin install automake autoconf pkgconf libaacs libbluray
# ./configure
# make
# make install
OpenBSD
-------
# pkg_add autoconf-2.69p2 automake-1.16.1 libaacs libbluray
# AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.16 autoreconf -fi
# ./configure
# make
# make install
DragonFly BSD
-------------
# pkg install autoconf automake pkgconf libaacs libbluray
# ./configure
# make
# make install