diff --git a/sys-apps/sampler-bin/Manifest b/sys-apps/sampler-bin/Manifest new file mode 100644 index 0000000000..1e0309bbff --- /dev/null +++ b/sys-apps/sampler-bin/Manifest @@ -0,0 +1 @@ +DIST sampler-bin-1.1.0 5587072 BLAKE2B 6fe196d756a62f7ce9b940b914877f28618c25b817f309c75c9c8e36e71bddb4cd0e0e5089832bec9d732a8fcfd8647e5c3ebf926ddcca088805904b057fc55e SHA512 0e8e14c5e5cc1718268cf2fb466ebb742b4f1b88412b12500e9e2b92cf445fa74475ddef2bb8a57f475a2095fca490643b9204389605fec2e561d878925dccb3 diff --git a/sys-apps/sampler-bin/metadata.xml b/sys-apps/sampler-bin/metadata.xml new file mode 100644 index 0000000000..998eee750f --- /dev/null +++ b/sys-apps/sampler-bin/metadata.xml @@ -0,0 +1,11 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + sqshq/sampler + + diff --git a/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild b/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild new file mode 100644 index 0000000000..7e9c99e3a1 --- /dev/null +++ b/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="visualizer for shell commands, executions and alerting" +HOMEPAGE="https://sampler.dev" + +SRC_URI="https://github.com/sqshq/sampler/releases/download/v1.1.0/sampler-1.1.0-linux-amd64 -> ${P}" +S="${WORKDIR}" + +#https://github.com/sqshq/sampler/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT+=" test" + +RDEPEND+="media-libs/alsa-lib" + +src_install() { + cp "${DISTDIR}"/${P} "${S}"/sampler-bin + dobin sampler-bin +}