4 Commits

Author SHA1 Message Date
858d44b5ca Bump version to v1.0.1
Signed-off-by: Nicolás Ortega Froysa <nicolas@ortegas.org>
2024-05-21 15:45:25 +02:00
e18136e43c Makefile: create parent directories if not exists.
Signed-off-by: Nicolas A. Ortega Froysa <nicolas.ortega@babelgroup.com>
2024-05-21 15:41:36 +02:00
d692d4aa59 Makefile: Fix PREFIX handling.
Signed-off-by: Nicolas A. Ortega Froysa <nicolas.ortega@babelgroup.com>
2024-05-21 15:41:36 +02:00
1516ce9ff3 Include section for supported AUR helpers.
Signed-off-by: Nicolás Ortega Froysa <nicolas@ortegas.org>
2024-05-07 18:07:13 +02:00
4 changed files with 11 additions and 3 deletions

View File

@ -20,7 +20,9 @@
# 3. This notice may not be removed or altered from any source # 3. This notice may not be removed or altered from any source
# distribution. # distribution.
PREFIX=/usr/local ifeq ($(PREFIX),)
PREFIX := /usr/local
endif
pacundo: pacundo.pl pacundo: pacundo.pl
pp -o $@ $^ pp -o $@ $^
@ -35,5 +37,7 @@ clean:
$(RM) pacundo.1.gz $(RM) pacundo.1.gz
install: pacundo pacundo.1.gz install: pacundo pacundo.1.gz
install -d $(PREFIX)/bin
install -m 755 pacundo $(PREFIX)/bin/ install -m 755 pacundo $(PREFIX)/bin/
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/

View File

@ -45,6 +45,10 @@ There are two modes for undoing pacman transactions:
Look at the man-page (`man pacundo`) for more information. Look at the man-page (`man pacundo`) for more information.
### Supported AUR Helpers
- [yay](https://github.com/Jguer/yay)
## License ## License
This project is licensed under the terms & conditions of the Zlib license. This project is licensed under the terms & conditions of the Zlib license.

View File

@ -1,4 +1,4 @@
.TH PACUNDO "1" "April 2024" "pacundo 1.0" "User Commands" .TH PACUNDO "1" "April 2024" "pacundo 1.0.1" "User Commands"
.SH "NAME" .SH "NAME"
pacundo - A time machine to return your ArchLinux machine back to a working state. pacundo - A time machine to return your ArchLinux machine back to a working state.
.SH "SYNOPSIS" .SH "SYNOPSIS"

View File

@ -29,7 +29,7 @@ use feature qw(signatures);
use Getopt::Std; use Getopt::Std;
use File::ReadBackwards; use File::ReadBackwards;
my $VERSION = '1.0'; my $VERSION = '1.0.1';
my $PROG_NAME = 'pacundo'; my $PROG_NAME = 'pacundo';
sub print_version() { sub print_version() {