mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-26 02:26:42 +07:00
22 lines
709 B
Plaintext
22 lines
709 B
Plaintext
# libcedrus
|
|
# required for libvdpau-sunxi
|
|
# may depend on libump
|
|
local package_name="libcedrus"
|
|
local package_repo="https://github.com/linux-sunxi/libcedrus.git"
|
|
local package_ref="branch:master"
|
|
local package_upstream_version="1.0.1"
|
|
local package_install_chroot="libcedrus1 libcedrus1-dev"
|
|
local package_install_target="libcedrus1"
|
|
local package_component="${release}-desktop"
|
|
|
|
package_checkbuild()
|
|
{
|
|
# we don't support running kernels < 3.13 on Stretch or Bionic
|
|
[[ $release != stretch && $release != bionic && $release != buster && $release != disco ]]
|
|
}
|
|
|
|
package_checkinstall()
|
|
{
|
|
[[ $LINUXFAMILY == sun*i && $RELEASE != stretch && $RELEASE != bionic && $BRANCH == legacy && $BUILD_DESKTOP == yes ]]
|
|
}
|