milis/talimatname/genel/thrift/talimat

42 lines
914 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Ölçeklenebilir çoğul programlama dilleri için IPC/RPC çatısı
# URL: http://thrift.apache.org/
# Packager: milisarge
# Depends on: qt5 boost libevent
name=thrift
version=0.10.0
release=1
source=(https://github.com/apache/thrift/archive/$version.zip::$name-$zip.zip)
build() {
cd thrift-$version
./bootstrap.sh
./configure --prefix=/usr \
--with-cpp \
--with-c_glib \
--with-qt5 \
--with-libevent \
--with-csharp \
--without-haskell \
--without-php \
--without-ruby \
--without-python \
--without-erlang \
--without-perl \
--without-java \
--without-c_sharp \
--without-d \
--without-php \
--without-go \
--without-lua \
--without-nodejs \
--without-tests
make -j2
make DESTDIR="$PKG" install
install -m0644 -D contrib/thrift.vim "$PKG"/usr/share/vim/vimfiles/syntax/thrift.vim
install -m0644 -D contrib/thrift.el "$PKG"/usr/share/emacs/site-lisp/thrift.el
}