From 40bcc6b51b39abf53b308afd9f923f3ba26514c2 Mon Sep 17 00:00:00 2001
From: milisbir <milisarge@gmail.com>
Date: Thu, 31 Aug 2017 06:43:00 +0300
Subject: [PATCH] thrift.paketlendi

---
 talimatname/genel/thrift/talimat | 41 ++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 talimatname/genel/thrift/talimat

diff --git a/talimatname/genel/thrift/talimat b/talimatname/genel/thrift/talimat
new file mode 100644
index 000000000..d9b99692b
--- /dev/null
+++ b/talimatname/genel/thrift/talimat
@@ -0,0 +1,41 @@
+# 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
+	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
+
+}