talimat 848 B

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