-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added rar2fs #3990
Open
rohtang
wants to merge
9
commits into
SynoCommunity:master
Choose a base branch
from
rohtang:rar2fs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Added rar2fs #3990
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e0fe161
added rar2fs
0b090c0
forgot these
b6a64f8
fixed typo
1dd550e
works across the board
81bc93b
seems I forgot these
c0aa888
forgot this as well
4c1c6ea
made requested changes
rohtang 7e1fa68
fixed typo and added dependency to synocli-file
rohtang c4f60d6
removed link
rohtang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
PKG_NAME = rar2fs | ||
PKG_VERS = 1.29.0 | ||
PKG_EXT = tar.gz | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = https://github.com/hasse69/rar2fs/releases/download/v$(PKG_VERS)/ | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
CONFIGURE_ARGS = --with-fuse=$(WORK_DIR)/libfuse-fuse-2.9.9/include --with-fuse-lib=$(WORK_DIR)/install/usr/local/rar2fs/lib --with-unrar=$(WORK_DIR)/unrar | ||
BUILD_DEPENDS = cross/fuse cross/unrar | ||
PRE_CONFIGURE_TARGET = fulfill_rar2fs_prerequisite | ||
PRE_COMPILE_TARGET = build_unrar_static | ||
HOMEPAGE = https://github.com/hasse69/rar2fs | ||
COMMENT = sshfs is a network filesystem client to connect to SSH servers | ||
LICENSE = GPLv2 | ||
|
||
GNU_CONFIGURE = 1 | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: fulfill_rar2fs_prerequisite | ||
fulfill_rar2fs_prerequisite: | ||
touch $(WORK_DIR)/unrar/libunrar.a | ||
|
||
.PHONY: build_unrar_static | ||
build_unrar_static: | ||
cd $(WORK_DIR)/unrar; \ | ||
make -f makefile lib; |
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,3 @@ | ||
bin:bin/mkr2i | ||
bin:bin/rar2fs | ||
lnk:sbin/mount.rar2fs |
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,3 @@ | ||
rar2fs-1.29.0.tar.gz SHA1 66be422ec7436bd2ffd7ff1fa190d3895da7ad2b | ||
rar2fs-1.29.0.tar.gz SHA256 1bc42aa0516b276d24bdd8b69c53973fddd58bbd4e2c0d293c84912d14fdc6c7 | ||
rar2fs-1.29.0.tar.gz MD5 13b518a6be0863f1fd10ce4c14bc2c30 |
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,21 @@ | ||
SPK_NAME = rar2fs | ||
SPK_VERS = 1.0 | ||
SPK_REV = 1 | ||
SPK_ICON = src/rar2fs.png | ||
|
||
DEPENDS = cross/$(SPK_NAME) | ||
|
||
MAINTAINER = Kristofer Hammarskold (kristofer.hammarskold[AT]gmail[DOT]com) | ||
DESCRIPTION = rar2fs is a FUSE based file system that can mount a source RAR archive/volume or a directory containing any number of RAR archives and read the contents as regular files on-the-fly. | ||
DISPLAY_NAME = rar2fs | ||
STARTABLE = no | ||
CHANGELOG = "Initial version" | ||
BETA = 1 | ||
|
||
HOMEPAGE = https://github.com/hasse69/rar2fs | ||
LICENSE = GPLv3, LGPLv2.1 (libfuse.so), UnRAR License (unrar) | ||
|
||
INSTALL_PREFIX = /usr/local/$(SPK_NAME) | ||
|
||
include ../../mk/spksrc.spk.mk | ||
|
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commend references sshfs. This should be updated to reflect rarfs.