miktex-kiss-repo

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

build (504B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
#!/bin/sh -e

./configure \
    --prefix=/usr \
    --disable-java \
    --disable-native-java \
    --disable-csharp \
    --disable-libasprintf \
    --enable-threads=posix \
    --disable-rpath \
    --without-emacs \
    --disable-acl \
    --with-included-glib \
    --with-included-libcroco \
    --without-git \
    --with-included-libxml \
    --with-included-libunistring \
    --disable-openmp \
    --disable-curses \
    --without-examples \
    --enable-nls

make
make DESTDIR="$1" install