sys-apps/swapspace - 1.18.1-r3 (2xsaiko)

Search

Install

Install this version:

emerge -a =sys-apps/swapspace-1.18.1-r3

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-apps/swapspace-1.18.1-r3

Or alternatively:

emerge --autounmask-write -a =sys-apps/swapspace-1.18.1-r3

Package Information

Description:
A fork of Jeroen T. Vermeulen's excellent dynamic swap space manager
Homepage:
https://github.com/Tookmund/Swapspace
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
1.18.1-r3 8 ~amd64 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit systemd

DESCRIPTION="A fork of Jeroen T. Vermeulen's excellent dynamic swap space manager"
HOMEPAGE="https://github.com/Tookmund/Swapspace"
SRC_URI="https://github.com/Tookmund/Swapspace/releases/download/v${PV}/swapspace-${PV}.tar.gz"

LICENSE="GPL-2"

SLOT="0"

KEYWORDS="~amd64"

src_configure() {
	econf --localstatedir="${EPREFIX}"/var
}

src_install() {
	default

	doman doc/swapspace.8
	systemd_dounit "${FILESDIR}"/swapspace.service
}

Inherited Eclasses