diff --git a/README.md b/README.md index 4ed59f3..e76e1f6 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,13 @@ Homepage: https://p.outlyer.net/nautilus-follow-symlink ## Installation -I provide both `deb` and `rpm` packages to download and install manually, e.g.: +I provide both `deb` packages to download and install manually, e.g.: ```shell -dpkg -i nautilus-follow-symlink_1.2.0-pon.1_amd64.deb +dpkg -i nautilus-follow-symlink_1.2.1-pon.1_amd64.deb ``` + + +## Building packages from source + +### DEB package + +```shell +tar zxvf nautilus-follow-symlink-1.2.1.tar.gz +cd nautilus-follow-symlink-1.2.1 +dpkg-buildpackage -rfakeroot -us -uc -b +# or +debuild -us -uc -b +``` + +### RPM package + +```shell +rpmbuild -tb nautilus-follow-symlink-1.2.1.tar.gz +``` + ## Building from source Download the tarball and follow the traditional `configure` + `make` workflow, e.g.: ```shell -tar xvf nautilus-follow-symlink-1.2.0.tar.gz -cd nautilus-follow-symlink-1.2.0 +tar xvf nautilus-follow-symlink-1.2.1.tar.gz +cd nautilus-follow-symlink-1.2.1 ./configure make sudo make install @@ -44,7 +65,7 @@ sudo make install ## Building from the git repository -Building from the raw source in the repository requires the GNU `auto*` set of tools. +Building from the raw source in the repository requires the _autotools_. ```shell git clone https://git.outlyer.net/outlyer/nautilus-follow-symlink/