mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
29 lines
507 B
Bash
29 lines
507 B
Bash
# Copyright 1999-2022 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Saleae logic analyzer"
|
|
HOMEPAGE="https://www.saleae.com"
|
|
|
|
SRC_URI="https://downloads.saleae.com/logic2/Logic-${PV}-master.AppImage"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
LICENSE="Saleae"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RESTRICT="bindist mirror strip"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
src_unpack() {
|
|
cp "${DISTDIR}/Logic-2.4.0-master.AppImage" saleae-logic || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin saleae-logic
|
|
}
|