diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-30 06:51:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-30 06:56:20 +0200 |
commit | 7a650b3b080eeba9797539c5d997c03043823785 (patch) | |
tree | 36d472debed5fbdddf207ba902483311cba87345 /sys-fs/duperemove | |
parent | dev-python/seaborn: Bump to 0.13.0 (diff) | |
download | gentoo-7a650b3b080eeba9797539c5d997c03043823785.tar.gz gentoo-7a650b3b080eeba9797539c5d997c03043823785.tar.bz2 gentoo-7a650b3b080eeba9797539c5d997c03043823785.zip |
sys-fs/duperemove: Bump to 0.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-fs/duperemove')
-rw-r--r-- | sys-fs/duperemove/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/duperemove/duperemove-0.13.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest index 67cb5fa4099d..1e29cc7dda9e 100644 --- a/sys-fs/duperemove/Manifest +++ b/sys-fs/duperemove/Manifest @@ -1 +1,2 @@ DIST duperemove-0.12.gh.tar.gz 162458 BLAKE2B 53dae9df2b45cb9ede8041e8a7a827c22c725da51d6df74acc96b464d4bfcc3a14b8adcd4b9ada68e2cf1411a5f015be27476e088a655998b0cc9d1f19acfae8 SHA512 7b5f464615f4ba850733657239dd4d68120d592424b6be56687b7ad4f6fd2dee67fd7729a1cd47c803dd77864dee033d8eef2f7f6774dc0f657b0d52aeb5559c +DIST duperemove-0.13.gh.tar.gz 165454 BLAKE2B 8bfac3448b5ee8842be77b0ac969439197050d3ef4b245be85a918353c966e56d7b7505e004af830caca50732d1227795769d803640f422a1bed8ca299802e75 SHA512 e24fa9f658acf1c1badd797af719f81250861b9af4595cf96aa3583fe558a2fba7390bc06184f6a4b6c76be3c8b214d6a6ead8b0de6914a5e1df053d5e7e24e7 diff --git a/sys-fs/duperemove/duperemove-0.13.ebuild b/sys-fs/duperemove/duperemove-0.13.ebuild new file mode 100644 index 000000000000..82e6d1da0fdb --- /dev/null +++ b/sys-fs/duperemove/duperemove-0.13.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Btrfs and xfs deduplication utility" +HOMEPAGE="https://github.com/markfasheh/duperemove/" +SRC_URI=" + https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz + -> ${P/_/.}.gh.tar.gz +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/glib:2" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${P/_/.} + +src_compile() { + emake VERSION="${PV}" IS_RELEASE=1 CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} |