26 lines
525 B
Bash
26 lines
525 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="User Mode Linux utilities"
|
|
HOMEPAGE="https://user-mode-linux.sourceforge.net"
|
|
SRC_URI="https://user-mode-linux.sourceforge.net/uml_utilities_20070815.tar.bz2"
|
|
PATCHES=("${FILESDIR}/host.patch")
|
|
|
|
LICENSE=""
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/tools-20070815"
|
|
DEPEND="fuse"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
src_prepare() {
|
|
default
|
|
}
|
|
src_build() {
|
|
make
|
|
}
|
|
src_install() {
|
|
make DESTDIR="${P}" install
|
|
}
|