Reword and cleanup
CI / build (push) Successful in 1m2s Details
Package / tarball (push) Successful in 1m6s Details
Package / Build deb (and test-build) (caja) (push) Successful in 1m19s Details
Package / Build deb (and test-build) (nautilus) (push) Successful in 1m20s Details
Package / Build rpm (caja) (push) Failing after 2m35s Details
Package / Build rpm (nautilus) (push) Failing after 2m0s Details

This commit is contained in:
Toni Corvera 2024-04-19 21:24:10 +02:00
parent 8044fd8a5b
commit e63e7de95e
1 changed files with 26 additions and 5 deletions

View File

@ -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
```
<!-- TODO: Re-enable repository, as of this writing I can't update it
For deb-based distributions you may add my [repository][debian-repository] to your sources:
```shell
@ -29,14 +30,34 @@ echo 'deb http://packages.outlyer.net/debian stable main contrib' | sudo tee /et
sudo wget http://packages.outlyer.net/public_key.gpg -O /etc/apt/trusted.gpg.d/packages.outlyer.net.gpg
sudo apt update
```
-->
## 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/