From 962c54b8e0a18a781363090b01df18af7b5c87d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sat, 25 May 2024 17:57:44 +0200 Subject: [PATCH] Remove perl compiling. This is giving some weird outputs when I try running it after making the ArchLinux package (see AUR pacundo). --- Makefile | 10 ++++------ README.md | 3 +-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 4a4beef..b972073 100644 --- a/Makefile +++ b/Makefile @@ -24,20 +24,18 @@ ifeq ($(PREFIX),) PREFIX := /usr/local endif -pacundo: pacundo.pl - pp -o $@ $^ - pacundo.1.gz: pacundo.1 gzip -c $^ > $@ -.PHONY: install clean +.PHONY: clean doc install clean: - $(RM) pacundo $(RM) pacundo.1.gz +doc: pacundo.1.gz + install: pacundo pacundo.1.gz install -d $(PREFIX)/bin - install -m 755 pacundo $(PREFIX)/bin/ + install -m 755 pacundo.pl $(PREFIX)/bin/pacundo install -d $(PREFIX)/share/man/man1 install -m 644 pacundo.1.gz $(PREFIX)/share/man/man1/ diff --git a/README.md b/README.md index 4b87e0f..ba42134 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,12 @@ 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 perl-par-packer +# pacman -S perl perl-file-readbackwards ``` ### Compiling & Installing