101ebf77b1
- correct installation path of man page - add missing @dirrm to PLIST - chmod -> ${CHMOD} - echo -> ${ECHO}
18 lines
298 B
Bash
18 lines
298 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC || exit 1;
|
|
|
|
mv Imakefile Imakefile.orig
|
|
sed -e s/snf/pcf.gz/ <Imakefile.orig>Imakefile
|
|
|
|
cat >> Imakefile <<END
|
|
|
|
HSCORE_FILE = $PREFIX/lib/xjewel.scores
|
|
USERDEFS = -DICON_WINDOW -DUSE_SELECT -DGETPWENT
|
|
BINDIR = $PREFIX/bin
|
|
MANDIR = $PREFIX/man/cat6
|
|
MANSUFFIX = 6
|
|
END
|
|
|
|
exit 0;
|