mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
27 lines
910 B
Makefile
27 lines
910 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="v86d"
|
|
PKG_VERSION="0.1.10"
|
|
PKG_SHA256="634964ae18ef68c8493add2ce150e3b4502badeb0d9194b4bd81241d25e6735c"
|
|
PKG_ARCH="x86_64"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://dev.gentoo.org/~spock/projects/uvesafb/"
|
|
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
PKG_DEPENDS_INIT="toolchain gcc:init"
|
|
PKG_SECTION="system"
|
|
PKG_SHORTDESC="v86d: A userspace helper that runs x86 code in an emulated environment."
|
|
PKG_LONGDESC="v86d is the userspace helper that runs x86 code in an emulated environment. uvesafb will not work without v86d. v86d currently supports the x86 and amd64 (x86-64) architectures."
|
|
|
|
INIT_CONFIGURE_OPTS="--with-x86emu"
|
|
|
|
pre_configure_init() {
|
|
# v86d fails to build in subdirs
|
|
cd $PKG_BUILD
|
|
rm -rf .$TARGET_NAME-init
|
|
}
|
|
|
|
makeinstall_init() {
|
|
DESTDIR=$INSTALL/usr make install
|
|
}
|