Conversation
mgorny
left a comment
There was a problem hiding this comment.
Thanks for your submission. However, I'd like to point out that I personally am against Markdown, and prefer RST or plain text.
| Create efficient deltas (patches) between two SquashFS images | ||
|
|
||
| ## Building from source | ||
| This project uses [autotools](http://inti.sourceforge.net/tutorial/libinti/autotoolsproject.html) |
There was a problem hiding this comment.
I'm against linking to some project's documentation that is in no way related to this project or upstream autotools.
|
|
||
| ```bash | ||
| $ git clone https://github.com/mgorny/squashdelta.git | ||
| $ cd squashdelta |
There was a problem hiding this comment.
There's little activity in git, and there is a proper release .tar (in 'Releases') which is strongly recommended over it.
|
|
||
| ```bash | ||
| $ aclocal | ||
| $ autoconf |
There was a problem hiding this comment.
Those two are covered by autoreconf.
| ```bash | ||
| $ aclocal | ||
| $ autoconf | ||
| $ touch AUTHORS NEWS README ChangeLog |
| $ aclocal | ||
| $ autoconf | ||
| $ touch AUTHORS NEWS README ChangeLog | ||
| $ mkdir build-aux |
| $ touch AUTHORS NEWS README ChangeLog | ||
| $ mkdir build-aux | ||
| $ autoreconf --install | ||
| $ automake --add-missing |
There was a problem hiding this comment.
This is already done by autoreconf.
| ``` | ||
|
|
||
| ```bash | ||
| $ ./configure --prefix=/opt/bin |
There was a problem hiding this comment.
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.
Add build instructions for non-Gentoo users