Compare commits

..

No commits in common. "d4f0f15341dd78f23837dc7a1c93609ce21ff24a" and "ebdf36d3c0d40b2d58450dc073f717e9b46daa3a" have entirely different histories.

2 changed files with 8 additions and 9 deletions

View File

@ -24,22 +24,20 @@ ifeq ($(PREFIX),)
PREFIX := /usr/local
endif
pacundo: pacundo.pl
pp -o $@ $^
pacundo.1.gz: pacundo.1
gzip -c $^ > $@
.PHONY: clean doc install uninstall
.PHONY: install clean
clean:
$(RM) pacundo
$(RM) pacundo.1.gz
doc: pacundo.1.gz
install: pacundo pacundo.1.gz
install -d $(PREFIX)/bin
install -m 755 pacundo.pl $(PREFIX)/bin/pacundo
install -m 755 pacundo $(PREFIX)/bin/
install -d $(PREFIX)/share/man/man1
install -m 644 pacundo.1.gz $(PREFIX)/share/man/man1/
uninstall:
$(RM) $(PREFIX)/bin/pacundo
$(RM) $(PREFIX)/share/man/man1/pacundo.1.gz

View File

@ -11,12 +11,13 @@ to boot from a USB depending on just how broken it is).
- Perl 5
- `File::ReadBackwards` module
- PAR Packager (for compiling)
- GNU Makefile
You can install these packages with the following command:
```console
# pacman -S perl perl-file-readbackwards
# pacman -S perl perl-file-readbackwards perl-par-packer
```
### Compiling & Installing