diff --git a/Makefile b/Makefile index b5a6c5c..e05e64a 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,11 @@ DEPENDS = glibc,libgcc,libstdc++ ARCH = x86_64 URL = https://sourceforge.net/projects/fakerootng/ +REPO = main BRIEF = run a command while making it believe it is running as root DESC = fakeroot-ng uses the debug interface (PTRACE) to fool programs \ into thinking they are running with root permission. -SNAPVER = 0 +SNAPVER = 1 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') @@ -64,7 +65,8 @@ $(ROOT): $(SRCDIR)/fakeroot-ng fi @cd $(SRCDIR) && make install DESTDIR=$(ROOT) && \ - ln -s fakeroot-ng $(ROOT)/usr/bin/fakeroot + ln -s fakeroot-ng $(ROOT)/usr/bin/fakeroot && \ + ln -s fakeroot-ng.1.gz $(ROOT)/usr/share/man/man1/fakeroot.1 test: $(ROOT) @cd $(SRCDIR); \