forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-fs/rar2fs: version bump to 1.25.2
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST rar2fs-1.23.1.tar.gz 245260 SHA256 f9f0435ae3a63c9fc5cf787a10f30355bcecd4e363e8e4b97e4ef935ef8a11c7 SHA512 7e5d6ef8a3d7eed65fc9e2dd27fa18e053115be6f061d4be5bc712511c0e5f1e50da333964403d6a264241ccf576605ed8ed6751f5a367d9c624354e978815f8 WHIRLPOOL 7585470a20a6ff32402989ece726479ea4a42a402668d055eba4472da5a98da1414ad0b0fd82f293bc89c4dc1d66b39157304a5ae1c2d783e77a7f971c5637b4 | ||
DIST rar2fs-1.24.0.tar.gz 252629 SHA256 5d702847071fbbc6fe25d14b544f390f7e65ad3d13c14a619dbf7c290e65edae SHA512 85cff1d9b8675664ce9ab35666d471d62c6c1a2e74f70cfbfb17ec77eb292987b0b03e5dcb1ee927a93b1c7e08af44ed999930d6727863005e532a72afcffbb3 WHIRLPOOL 589dc3acf91fd3d7c0ec3e8c5b5bb26b6d8cd1cd76826619aaa3cf492a9976cbafed07bd8649bfe1ee6ee30bfedcd679ca2f0f32a98ca37a288e8b604a05b448 | ||
DIST rar2fs-1.24.1.tar.gz 252590 SHA256 1961417e4e3c7afb5dec48d13ddfdc89e402389396cc21d4da06745f2ea9e417 SHA512 36a4f16e8cb5ceb3456c4540e84e073194b0ab7cb19a555bb136ec1529483cc7c860c1d5b576ac27d1e759cfb9f7073ba72382ef7c1c68fa09ad07e543a5230c WHIRLPOOL f924646c1b3987614137f794c08c93054329debd6ba7a7c8ff9f69628e324e6cafe9d733ac59073c28551b7d8e0613671b7c0751b23c36a4d4f301f9b1350ccd | ||
DIST rar2fs-1.25.2.tar.gz 257550 SHA256 57bb77e3de9fb9376c6b95d139ec9b1c9e20cf7326a6d627f1480d07076e1ff4 SHA512 10fcf2db037bde467781ae4c9b0b1ee95422a9b80f4d3f4643c2660b0a17dcd041eb111330c345f8759adbad7ef864f8ba108a106117adabc836d782becf7bfe WHIRLPOOL a55e4eb95a0decc0e772bfd6d6ce89b39afbfc50b7a3e823d54b6d5f3fd02a0cc21223b0aef0654e78c9200297777676838abdbabd3674d9427f8e46e906a54c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A FUSE based filesystem that can mount one or multiple RAR archive(s)" | ||
HOMEPAGE="http://hasse69.github.io/rar2fs/ https://github.com/hasse69/rar2fs" | ||
SRC_URI="https://github.com/hasse69/${PN}/releases/download/v${PV}/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="debug" | ||
|
||
RDEPEND=">=app-arch/unrar-5:= | ||
sys-fs/fuse" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_configure() { | ||
export USER_CFLAGS="${CFLAGS}" | ||
|
||
econf \ | ||
--with-unrar=/usr/include/libunrar \ | ||
--disable-static-unrar \ | ||
$(use_enable debug) | ||
} |