Compare commits
No commits in common. "d4f0f15341dd78f23837dc7a1c93609ce21ff24a" and "ebdf36d3c0d40b2d58450dc073f717e9b46daa3a" have entirely different histories.
d4f0f15341
...
ebdf36d3c0
14
Makefile
14
Makefile
@ -24,22 +24,20 @@ ifeq ($(PREFIX),)
|
|||||||
PREFIX := /usr/local
|
PREFIX := /usr/local
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
pacundo: pacundo.pl
|
||||||
|
pp -o $@ $^
|
||||||
|
|
||||||
pacundo.1.gz: pacundo.1
|
pacundo.1.gz: pacundo.1
|
||||||
gzip -c $^ > $@
|
gzip -c $^ > $@
|
||||||
|
|
||||||
.PHONY: clean doc install uninstall
|
.PHONY: install clean
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
$(RM) pacundo
|
||||||
$(RM) pacundo.1.gz
|
$(RM) pacundo.1.gz
|
||||||
|
|
||||||
doc: pacundo.1.gz
|
|
||||||
|
|
||||||
install: pacundo pacundo.1.gz
|
install: pacundo pacundo.1.gz
|
||||||
install -d $(PREFIX)/bin
|
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 -d $(PREFIX)/share/man/man1
|
||||||
install -m 644 pacundo.1.gz $(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
|
|
||||||
|
@ -11,12 +11,13 @@ to boot from a USB depending on just how broken it is).
|
|||||||
|
|
||||||
- Perl 5
|
- Perl 5
|
||||||
- `File::ReadBackwards` module
|
- `File::ReadBackwards` module
|
||||||
|
- PAR Packager (for compiling)
|
||||||
- GNU Makefile
|
- GNU Makefile
|
||||||
|
|
||||||
You can install these packages with the following command:
|
You can install these packages with the following command:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
# pacman -S perl perl-file-readbackwards
|
# pacman -S perl perl-file-readbackwards perl-par-packer
|
||||||
```
|
```
|
||||||
|
|
||||||
### Compiling & Installing
|
### Compiling & Installing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user