51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
# Tanım: Prolog environment
|
||
# URL: http://www.swi-prolog.org/
|
||
# Paketçi: milisarge
|
||
# Gerekler: libjpeg-turbo xorg-libxft xorg-libxinerama xorg-libxpm unixodbc
|
||
# Grup: geliştirme
|
||
|
||
isim=swi-prolog
|
||
surum=7.6.4
|
||
devir=2
|
||
kaynak=(http://www.swi-prolog.org/download/stable/src/swipl-${surum/_/-}.tar.gz)
|
||
|
||
derle() {
|
||
cd "swipl-${surum/_/-}"
|
||
./configure --with-world --prefix=/usr
|
||
(cd src; ./configure --enable-readline --prefix=/usr)
|
||
make
|
||
make -C "$SRC/swipl-${surum/_/-}" check || true
|
||
make -C "$SRC/swipl-${surum/_/-}" DESTDIR="$PKG" install
|
||
# Fix for FS#20873
|
||
chmod +x "$PKG/usr/lib/swipl-${surum/_/-}/library/dialect/sicstus/swipl-lfr.pl"
|
||
cd packages
|
||
./configure \
|
||
--with-cpp \
|
||
--with-clib \
|
||
--with-odbc \
|
||
--with-table \
|
||
--with-xpce \
|
||
--with-sgml \
|
||
--with-RDF \
|
||
--with-semweb \
|
||
--with-http \
|
||
--with-chr \
|
||
--with-clpqr \
|
||
--with-nlp \
|
||
--with-ssl \
|
||
--with-tipc \
|
||
--with-pldoc \
|
||
--with-plunit \
|
||
--with-zlib \
|
||
--with-R \
|
||
--with-pengines \
|
||
--with-protobufs \
|
||
--with-PDT \
|
||
--with-utf8proc \
|
||
--with-archive \
|
||
--without-jpl
|
||
make all
|
||
make install DESTDIR=$PKG
|
||
|
||
}
|