bzip2: install manpages into /usr/share/man.
--HG-- extra : convert_revision : 3f86f3d08619ca146e3ff8fb6e4642a19fb01506
This commit is contained in:
parent
0863aa593d
commit
ce78c8394b
2 changed files with 65 additions and 6 deletions
templates
|
@ -1,6 +1,35 @@
|
||||||
--- Makefile.orig 2008-10-23 01:37:56.000000000 +0200
|
--- Makefile.orig 2008-12-17 00:26:13.000000000 +0100
|
||||||
+++ Makefile 2008-10-23 01:39:30.000000000 +0200
|
+++ Makefile 2008-12-17 00:29:28.000000000 +0100
|
||||||
@@ -90,14 +90,13 @@ install: bzip2 bzip2recover
|
@@ -25,7 +25,7 @@ CFLAGS=-Wall -Winline -O2 -g $(BIGFILES)
|
||||||
|
|
||||||
|
# Where you want it installed when you do 'make install'
|
||||||
|
PREFIX=/usr/local
|
||||||
|
-
|
||||||
|
+MANDIR=$(PREFIX)/share/man
|
||||||
|
|
||||||
|
OBJS= blocksort.o \
|
||||||
|
huffman.o \
|
||||||
|
@@ -72,8 +72,8 @@ test: bzip2
|
||||||
|
install: bzip2 bzip2recover
|
||||||
|
if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
|
||||||
|
if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
|
||||||
|
- if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
|
||||||
|
- if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
|
||||||
|
+ if ( test ! -d $(MANDIR) ) ; then mkdir -p $(MANDIR) ; fi
|
||||||
|
+ if ( test ! -d $(MANDIR)/man1 ) ; then mkdir -p $(MANDIR)/man1 ; fi
|
||||||
|
if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
|
||||||
|
cp -f bzip2 $(PREFIX)/bin/bzip2
|
||||||
|
cp -f bzip2 $(PREFIX)/bin/bunzip2
|
||||||
|
@@ -83,30 +83,29 @@ install: bzip2 bzip2recover
|
||||||
|
chmod a+x $(PREFIX)/bin/bunzip2
|
||||||
|
chmod a+x $(PREFIX)/bin/bzcat
|
||||||
|
chmod a+x $(PREFIX)/bin/bzip2recover
|
||||||
|
- cp -f bzip2.1 $(PREFIX)/man/man1
|
||||||
|
- chmod a+r $(PREFIX)/man/man1/bzip2.1
|
||||||
|
+ cp -f bzip2.1 $(MANDIR)/man1
|
||||||
|
+ chmod a+r $(MANDIR)/man1/bzip2.1
|
||||||
|
cp -f bzlib.h $(PREFIX)/include
|
||||||
|
chmod a+r $(PREFIX)/include/bzlib.h
|
||||||
cp -f libbz2.a $(PREFIX)/lib
|
cp -f libbz2.a $(PREFIX)/lib
|
||||||
chmod a+r $(PREFIX)/lib/libbz2.a
|
chmod a+r $(PREFIX)/lib/libbz2.a
|
||||||
cp -f bzgrep $(PREFIX)/bin/bzgrep
|
cp -f bzgrep $(PREFIX)/bin/bzgrep
|
||||||
|
@ -16,5 +45,22 @@
|
||||||
- ln -s -f $(PREFIX)/bin/bzdiff $(PREFIX)/bin/bzcmp
|
- ln -s -f $(PREFIX)/bin/bzdiff $(PREFIX)/bin/bzcmp
|
||||||
+ cd $(PREFIX)/bin && ln -s bzdiff bzcmp
|
+ cd $(PREFIX)/bin && ln -s bzdiff bzcmp
|
||||||
chmod a+x $(PREFIX)/bin/bzdiff
|
chmod a+x $(PREFIX)/bin/bzdiff
|
||||||
cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/man/man1
|
- cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/man/man1
|
||||||
chmod a+r $(PREFIX)/man/man1/bzgrep.1
|
- chmod a+r $(PREFIX)/man/man1/bzgrep.1
|
||||||
|
- chmod a+r $(PREFIX)/man/man1/bzmore.1
|
||||||
|
- chmod a+r $(PREFIX)/man/man1/bzdiff.1
|
||||||
|
- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzegrep.1
|
||||||
|
- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzfgrep.1
|
||||||
|
- echo ".so man1/bzmore.1" > $(PREFIX)/man/man1/bzless.1
|
||||||
|
- echo ".so man1/bzdiff.1" > $(PREFIX)/man/man1/bzcmp.1
|
||||||
|
+ cp -f bzgrep.1 bzmore.1 bzdiff.1 $(MANDIR)/man1
|
||||||
|
+ chmod a+r $(MANDIR)/man1/bzgrep.1
|
||||||
|
+ chmod a+r $(MANDIR)/man1/bzmore.1
|
||||||
|
+ chmod a+r $(MANDIR)/man1/bzdiff.1
|
||||||
|
+ echo ".so man1/bzgrep.1" > $(MANDIR)/man1/bzegrep.1
|
||||||
|
+ echo ".so man1/bzgrep.1" > $(MANDIR)/man1/bzfgrep.1
|
||||||
|
+ echo ".so man1/bzmore.1" > $(MANDIR)/man1/bzless.1
|
||||||
|
+ echo ".so man1/bzdiff.1" > $(MANDIR)/man1/bzcmp.1
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o libbz2.a bzip2 bzip2recover \
|
||||||
|
|
|
@ -8,6 +8,19 @@ make_install_args="PREFIX=$XBPS_DESTDIR/$pkgname-$version/usr"
|
||||||
short_desc="The bzip2 compression library"
|
short_desc="The bzip2 compression library"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
checksum=f7bf5368309d76e5daf3a89d4d1bea688dac7780742e7a0ae1af19be9316fe22
|
checksum=f7bf5368309d76e5daf3a89d4d1bea688dac7780742e7a0ae1af19be9316fe22
|
||||||
long_desc=
|
long_desc="
|
||||||
|
bzip2 is a freely available, patent free, high-quality data compressor.
|
||||||
|
It typically compresses files to within 10% to 15% of the best available
|
||||||
|
techniques, whilst being around twice as fast at compression and six times
|
||||||
|
faster at decompression.
|
||||||
|
|
||||||
|
bzip2 compresses files using the Burrows-Wheeler block-sorting text
|
||||||
|
compression algorithm, and Huffman coding. Compression is generally
|
||||||
|
considerably better than that achieved by more conventional LZ77/LZ78-based
|
||||||
|
compressors, and approaches the performance of the PPM family of statistical
|
||||||
|
compressors.
|
||||||
|
|
||||||
|
The archive file format of bzip2 (.bz2) is incompatible with that of its
|
||||||
|
predecessor, bzip (.bz)."
|
||||||
|
|
||||||
base_chroot=yes
|
base_chroot=yes
|
||||||
|
|
Loading…
Reference in a new issue