summaryrefslogtreecommitdiff
path: root/repo/core/texinfo.xibuild
blob: 0bcbb29c658729498fd40242874ea2d04952157d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

DEPS=(ncurses gzip perl sh)

SOURCE=https://ftp.gnu.org/gnu/texinfo/texinfo-6.8.tar.xz
DESC="GNU documentation system for reading, writing and converting info pages"

build () {
    # fix an issue when building with glibc-2.34 or later
    sed -e 's/__attribute_nonnull__/__nonnull/' \
    -i gnulib/lib/malloc/dynarray-skeleton.c

    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install 
    make TEXMF=$PKG_DEST/usr/share/texmf install-tex
}