core/groff/Pkgfile

40 lines
922 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The GNU troff text-formatting system
2021-12-13 12:18:52 +01:00
# URL: https://www.gnu.org/software/groff/groff.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=groff
2018-12-25 12:47:44 +01:00
version=1.22.4
release=1
2021-12-13 12:18:52 +01:00
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
2021-12-13 12:18:52 +01:00
cd $name-$version
2009-01-08 14:39:48 +01:00
2021-12-13 12:18:52 +01:00
# we install only the Base14 and EURO pdf fonts
# and don't lookup for fonts in the filesystem
# https://savannah.gnu.org/bugs/?38029
sed -r -e '/^EURO\|/s/N/Y/' \
-e '/^[A-Z]+\|N/d' \
-e '/\(gs\)/d' \
-i font/devpdf/Foundry.in
2018-12-25 12:47:44 +01:00
2021-12-13 12:18:52 +01:00
./configure --prefix=/usr \
--without-x \
--with-doc=no
2009-01-08 14:39:48 +01:00
2021-12-13 12:18:52 +01:00
make -j1
make DESTDIR=$PKG install
2009-01-08 14:39:48 +01:00
2021-12-13 12:18:52 +01:00
sed -e 's|^\(papersize\).*|\1 /etc/papersize|' \
-i $PKG/usr/share/groff/current/font/*/DESC
2018-12-25 12:47:44 +01:00
2021-12-13 12:18:52 +01:00
install -d $PKG/etc
echo 'letter' > $PKG/etc/papersize
2021-12-13 12:18:52 +01:00
rm -rf $PKG/usr/share/{info,doc}
2009-01-08 14:39:48 +01:00
2021-12-13 12:18:52 +01:00
ln -s eqn $PKG/usr/bin/geqn
ln -s tbl $PKG/usr/bin/gtbl
ln -s soelim $PKG/usr/bin/zsoelim
2006-02-23 16:26:10 +01:00
}