mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
34 lines
613 B
Bash
34 lines
613 B
Bash
# Copyright 2023-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 meson
|
|
|
|
DESCRIPTION="Tool to communicate with Qualcomm System On a Chip bootroms"
|
|
HOMEPAGE="https://github.com/linux-msm/qdl"
|
|
EGIT_REPO_URI="https://github.com/linux-msm/qdl.git"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
dev-libs/libusb:1
|
|
dev-libs/libxml2:=
|
|
dev-libs/libzip:=
|
|
test? ( dev-util/cmocka )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND="
|
|
sys-apps/help2man
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
sed -i '/default_options/d' meson.build || die
|
|
default
|
|
}
|