I've been playing with getting bluray_info working and installed on Cygwin. I don't know much about porting to it, but I can get the dependencies installed with some hacks.
You'll need these Cygwin development libraries and packages installed:
You will also need the Java Development Kit installed.
Download and install libaacs into /usr
instead of /usr/local
:
./configure --prefix=/usr make make install
Download libbluray and make some changes.
Copy jni/win32/jni_md.h
to jni/
. Update it to use GCC's typedefs for jlong
:
#ifdef __GNUC__ typedef long long jlong; #else typedef signed __int64 jlong; #endif
After that, a standard install:
./configure --prefix=/usr make make install
You should be able to build bluray_info at this point. also installing it to /usr
. If everything else is in /usr/local
, you'd need to set PKG_CONFIG_PATH to /usr/local/lib/pkgconfig
Here's the problems with this whole setup:
/usr
Makefile.am
might need to look something like this, but I haven't gotten it working: ACLOCAL_AMFLAGS = -I m4 -I /cygdrive/c/Program\ Files/Java/jdk-12.0.1/include/win32 -I /cygdrive/c/Program\ Files/Java/jdk-12.0.1/include