-
Notifications
You must be signed in to change notification settings - Fork 10
Create README.md #1
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # squashdelta | ||
| Create efficient deltas (patches) between two SquashFS images | ||
|
|
||
| ## Building from source | ||
| This project uses [autotools](http://inti.sourceforge.net/tutorial/libinti/autotoolsproject.html) | ||
|
|
||
| ```bash | ||
| $ git clone https://github.com/mgorny/squashdelta.git | ||
| $ cd squashdelta | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's little activity in git, and there is a proper release .tar (in 'Releases') which is strongly recommended over it. |
||
| ``` | ||
|
|
||
| ```bash | ||
| $ aclocal | ||
| $ autoconf | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those two are covered by |
||
| $ touch AUTHORS NEWS README ChangeLog | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not needed at all. |
||
| $ mkdir build-aux | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is probably unnecessary. |
||
| $ autoreconf --install | ||
| $ automake --add-missing | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is already done by |
||
| ``` | ||
|
|
||
| ```bash | ||
| $ ./configure --prefix=/opt/bin | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a weird prefix to suggest. Please remember that users take this seriously, and they're going to end up installing in this weird location. |
||
| $ make | ||
| ``` | ||
|
|
||
| ## Usage | ||
| ```bash | ||
| $ ./squashdelta <source> <target> <patch-output> | ||
| ``` | ||
|
|
||
| ## Whitepaper | ||
| https://dev.gentoo.org/~mgorny/articles/reducing-squashfs-delta-size-through-partial-decompression.pdf | ||
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.
I'm against linking to some project's documentation that is in no way related to this project or upstream autotools.