26 lines
833 B
Plaintext
26 lines
833 B
Plaintext
# Tanım: Guake, Gnome için tepeden inişli bir terminaldir (KDE Yakuake, Tilda veya Quake'de kullanılan terminal tarzında)
|
||
# URL: http://guake-project.org/
|
||
# Paketçi: milisarge aydinyakar
|
||
# Gerekler: intltool gnome-common python-notify vte python-vte python-gconf dbus-python python-keybinder python-xdg libutempter
|
||
|
||
isim=guake
|
||
surum=0.8.7
|
||
devir=1
|
||
kaynak=(https://github.com/Guake/$isim/archive/$surum.tar.gz)
|
||
|
||
derle() {
|
||
# Python2 fix
|
||
cd $isim-$surum
|
||
sed -i 's|/usr/bin/env python|/usr/bin/python2|' src/guake/prefs.py
|
||
|
||
NOCONFIGURE=1 ./autogen.sh
|
||
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
||
--disable-schemas-install \
|
||
--with-gconf-schema-file-dir=/usr/share/gconf/schemas \
|
||
PYTHON=python2
|
||
make
|
||
make DESTDIR="$PKG" install
|
||
python2 -m compileall "$PKG"/usr/lib/python2.7/site-packages/guake/
|
||
|
||
}
|