diff options
| author | root <root@alpha.trunkmasters.com> | 2026-08-14 03:04:40 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-08-14 03:04:40 -0500 |
| commit | 44ac9950da93ffaa670439fbc31f0a3f95378bb3 (patch) | |
| tree | 88c80e746a3195bb4d1869bcb64467fdabcc54c8 /sys-process | |
| parent | 00a5031b2e58fb36fc981fe226565880b4798a8b (diff) | |
| download | baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.tar.gz baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.tar.xz baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.zip | |
Adding metadata
Diffstat (limited to 'sys-process')
| -rw-r--r-- | sys-process/snooze/Manifest | 1 | ||||
| -rw-r--r-- | sys-process/snooze/snooze-0.6.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/sys-process/snooze/Manifest b/sys-process/snooze/Manifest index 171f69ab8278..b670e70a1d2a 100644 --- a/sys-process/snooze/Manifest +++ b/sys-process/snooze/Manifest @@ -1 +1,2 @@ DIST snooze-0.5.1.tar.gz 8051 BLAKE2B 04629dc66e41610272daf630bf34da43a5ab2ae2bf9da076f843004462ed843a5ba63253de95bdb37768f56c5851f5d4cce010f73ed34ee9c9f15fe82fecd440 SHA512 6b97c691c1c34ec427032e27e7e9f9df8d68eae59e65b2acd777ac7416f18404b993812ba189257f4a418cfb8f8b5087e62c42bc276aeb4cae3b51acf262e9fd +DIST snooze-0.6.tar.gz 8618 BLAKE2B 4cc3daaa3cada0d09897197b5eb92b9efde69f090f7a91993b14f1a89a6eb5f550ed7f458dde9ae48e8b8cdeb729482ff2e97b9bd24619bc41c4773a97be85bd SHA512 7380b4f72ec8dc51f3404dc04ec2cfe19a0fa91313f0cf70d75d1c18fdc24b213e4093de3693b0f38acc9731f76035b7749676d6481d418f463c6402d5d2fff6 diff --git a/sys-process/snooze/snooze-0.6.ebuild b/sys-process/snooze/snooze-0.6.ebuild new file mode 100644 index 000000000000..4a91c9dd0b7d --- /dev/null +++ b/sys-process/snooze/snooze-0.6.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Run a command at a particular time" +HOMEPAGE="https://github.com/leahneukirchen/snooze" +SRC_URI="https://github.com/leahneukirchen/snooze/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_compile() { + tc-export CC + emake CFLAGS="${CFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + dodoc {README,NEWS}.md +} |
