• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H28-May-2012-1,6731,111

slackware/H28-May-2012-11287

src/H03-May-2022-3,3471,709

AUTHORSH A D28-May-201244 21

COPYINGH A D28-May-201217.6 KiB341281

DoxyfileH A D28-May-201274.7 KiB1,8011,303

INSTALLH A D28-May-20129.3 KiB237179

Makefile.amH A D28-May-2012123 106

Makefile.inH A D28-May-201220.8 KiB675589

NEWSH A D28-May-2012662 2420

READMEH A D28-May-2012906 3123

TODOH A D28-May-2012275 97

aclocal.m4H A D28-May-201240.3 KiB1,1451,029

configureH A D28-May-2012173.3 KiB6,0555,012

configure.acH A D28-May-2012377 2316

README

1Fusepak is a program, that allows you to view contents of PACK (from
2Quake) and WAD (from Doom) files. One thing that makes it different
3from other such programs, is fact, that it uses FUSE
4(http://fuse.sourcefroge.net) to "mount" files under certain directory
5(just as you would mount a file over a loopback). This means that
6every program can access contents of those archives just by reading
7files.
8
9Requirements:
10	- FUSE (http://fuse.sourceforge.net) 2.8.x
11
12Build:
13	If you are using version from SVN, first run:
14	./bootstrap
15
16	After that or if you are not using version from SVN (or you
17	don't even know what SVN is), run:
18	./configure && make
19
20Install:
21	make install
22
23Usage:
24	pakmount some_file some_dir
25
26	This will make contents of some_file (either PACK or WAD)
27	available under some_dir. Please note that some_dir should be empty.
28
29	To unmount previously mounted file, use:
30	fusermount -u some_dir
31