talimat 848 B

1234567891011121314151617181920212223242526
  1. # Description: 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. # Packager: milisarge aydinyakar
  4. # Depends on: intltool gnome-common python-notify vte python-vte python-gconf dbus-python python-keybinder python-xdg libutempter
  5. name=guake
  6. version=0.8.7
  7. release=1
  8. source=(https://github.com/Guake/$name/archive/$version.tar.gz)
  9. build() {
  10. # Python2 fix
  11. cd $name-$version
  12. sed -i 's|/usr/bin/env python|/usr/bin/python2|' src/guake/prefs.py
  13. NOCONFIGURE=1 ./autogen.sh
  14. ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
  15. --disable-schemas-install \
  16. --with-gconf-schema-file-dir=/usr/share/gconf/schemas \
  17. PYTHON=python2
  18. make
  19. make DESTDIR="$PKG" install
  20. python2 -m compileall "$PKG"/usr/lib/python2.7/site-packages/guake/
  21. }