diff options
Diffstat (limited to 'sys-fs/fswatch/fswatch-1.16.0.ebuild')
-rw-r--r-- | sys-fs/fswatch/fswatch-1.16.0.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys-fs/fswatch/fswatch-1.16.0.ebuild b/sys-fs/fswatch/fswatch-1.16.0.ebuild new file mode 100644 index 000000000000..f145c182b0f7 --- /dev/null +++ b/sys-fs/fswatch/fswatch-1.16.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="cross-platform file change monitor with multiple backends" +HOMEPAGE="https://github.com/emcrisostomo/fswatch" +SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-3" +SLOT="0" + +IUSE="nls static-libs" + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_enable static-libs static) \ + CXX=$(tc-getCXX) +} + +src_install() { + default + find "${ED}" -type f -name "*.la" -delete || die +} |