This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/ffmpeg/default.bash
2015-03-17 15:05:08 +00:00

48 lines
718 B
Bash

version=\
(
"2.6"
)
url=\
(
"http://ffmpeg.org/releases/ffmpeg-$version.tar.bz2"
)
md5=\
(
'5bf6097833a3fea6a9e51b0a456c6922'
)
configure()
{
./configure \
--sysroot="$cfg_dir_toolchain_sysroot" \
--prefix="$cfg_dir_rootfs/usr" \
--incdir="$cfg_dir_toolchain_sysroot/usr/include" \
--enable-cross-compile \
--cross-prefix="$cfg_target_canonical-" \
--target-os="linux" \
--enable-shared \
--disable-static \
--enable-pic \
--enable-gpl \
--arch=$cfg_architecture
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make \
install-headers
}
target_install()
{
$cmd_make \
install-libs
}