app-text/epub-create - 9999 (flexibeast)

Search

Install

Install this version:

emerge -a =app-text/epub-create-9999

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

autounmask =app-text/epub-create-9999

Or alternatively:

emerge --autounmask-write -a =app-text/epub-create-9999

Package Information

Description:
POSIX shell script for creating a minimal EPUB from a small collection of files
Homepage:
https://sr.ht/~flexibeast/epub-create/
License:
ISC

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

DESCRIPTION="POSIX shell script for creating a minimal EPUB from a small collection of files"
HOMEPAGE="https://sr.ht/~flexibeast/epub-create/"
EGIT_REPO_URI="https://git.sr.ht/~flexibeast/epub-create"

LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"

src_unpack() {
	git-r3_src_unpack
}

src_install() {
	exeinto /usr/bin
	doexe epub-create
	doman epub-create.1
}

Inherited Eclasses