Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Would it be possible to add the --enable-libbluray configure option #128

Open
MattL0 opened this issue Feb 6, 2022 · 1 comment
Open

Comments

@MattL0
Copy link

MattL0 commented Feb 6, 2022

hi, I am able to compile ffmpeg with --enable-libbluray without this script.

But if I try to add it to this script by compiling it, it does not work. It always shows an error (can't remember it now because It was a month ago or so).

This was the code i tried

if $NONFREE_AND_GPL; then
if build "libbluray" "master"; then
download "https://code.videolan.org/videolan/libbluray/-/archive/master/libbluray-master.tar.gz" "libbluray-master.tar.gz"
cd libbluray-master
execute ./bootstrap
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}"/lib
execute make -j 16
execute make install
build_done "libbluray"
fi
CONFIGURE_OPTIONS+=("--enable-libbluray")
fi

@ghost
Copy link

ghost commented Feb 16, 2022

if build "libxml2" "snapshot"; then
		download "ftp://xmlsoft.org/libxml2/libxml2-git-snapshot.tar.gz" "snapshot.tar.gz"
		execute execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared --disable-dependency-tracking --without-python
		execute make -j $MJOBS
		execute make install
		build_done "libxml2" "snapshot"
fi
if $NONFREE_AND_GPL; then
	if build "libbluray" "master"; then
		download "https://code.videolan.org/videolan/libbluray/-/archive/master/libbluray-master.tar.gz" "libbluray-master.tar.gz"
		execute ./bootstrap
		execute ./configure --prefix="${WORKSPACE}" --bindir="${WORKSPACE}"/bin --libdir="${WORKSPACE}"/lib
		execute make -j $MJOBS
		execute make install
		build_done "libbluray" "master"
	fi
	CONFIGURE_OPTIONS+=("--enable-libbluray")
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant