23 lines
915 B
Plaintext
23 lines
915 B
Plaintext
|
|
# xf86-video-fbturbo
|
||
|
|
# depends on libUMP
|
||
|
|
# depends on libDRI on Jessie
|
||
|
|
local package_name="xf86-video-fbturbo"
|
||
|
|
local package_repo="https://github.com/ssvb/xf86-video-fbturbo.git"
|
||
|
|
local package_ref="branch:master"
|
||
|
|
local package_builddeps="dh-autoreconf pkg-config xserver-xorg-dev x11proto-core-dev x11proto-fonts-dev x11proto-randr-dev x11proto-render-dev x11proto-video-dev xutils-dev"
|
||
|
|
local package_builddeps_xenial="libdri2-dev"
|
||
|
|
local package_install_target="xserver-xorg-video-fbturbo"
|
||
|
|
local package_component="${release}-desktop"
|
||
|
|
|
||
|
|
package_checkbuild()
|
||
|
|
{
|
||
|
|
# we don't support running kernels < 3.13 on Stretch or Bionic
|
||
|
|
[[ $release != stretch && $release != bionic ]]
|
||
|
|
[[ $release != stretch && $release != bionic && $release != buster && $release != disco ]]
|
||
|
|
}
|
||
|
|
|
||
|
|
package_checkinstall()
|
||
|
|
{
|
||
|
|
[[ $LINUXFAMILY == sun*i && $RELEASE != stretch && $RELEASE != bionic && $BUILD_DESKTOP == yes && $BRANCH == default ]]
|
||
|
|
}
|