miktex-kiss-repo

KISS Linux repo for MiKTeX
git clone git://bvnf.space/miktex-kiss-repo.git
Log | Files | Refs | README | LICENSE

build (396B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
     18
#!/bin/sh -e

# hunspell recommends using autoreconf
# autoreconf pulls autopoint, which does gettext stuff (not supported by KISS)
# so we just run each bit it would do without autopoint
libtoolize
aclocal --force -I m4
autoconf -f
autoheader -f
automake -af

./configure \
    --prefix=/usr
make
make DESTDIR="$1" install

# remove non-english manpage (i know, :/)
rm -fr "$1/usr/share/man/hu"