guake.paketlendi
This commit is contained in:
parent
7b8d871b72
commit
39ff014c05
|
@ -0,0 +1,25 @@
|
|||
# Description: Drop-down terminal for GNOME
|
||||
# URL: http://guake-project.org/
|
||||
# Packager: milisarge aydinyakar
|
||||
# Depends on: intltool gnome-common python-notify vte python-vte python-gconf dbus-python python-keybinder python-xdg libutempter
|
||||
|
||||
name=guake
|
||||
version=0.8.7
|
||||
release=1
|
||||
source=(https://github.com/Guake/$name/archive/$version.tar.gz)
|
||||
|
||||
build() {
|
||||
# Python2 fix
|
||||
cd $name-$version
|
||||
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/
|
||||
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Description: Interface for terminal emulators to record user sessions to utmp and wtmp files.
|
||||
# URL: ftp://ftp.altlinux.org/pub/people/ldv/utempter
|
||||
# Packager: tnut at nutyx dot org
|
||||
# Packager: milisarge
|
||||
# Depends on:
|
||||
|
||||
name=libutempter
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Description: Bindings Python2 for GConf.
|
||||
# URL: http://www.gnome.org/
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Packager: milisarge
|
||||
# Depends on: python-gtk gconf
|
||||
|
||||
_name=gnome-python
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
# Description: Python modules Virtual Terminal Emulator
|
||||
# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html
|
||||
# Packager: milisarge
|
||||
# Depends on: vte vala
|
||||
|
||||
name=python-vte
|
||||
version=0.28.2
|
||||
release=1
|
||||
source=(ftp://ftp.gnome.org/pub/gnome/sources/vte/${version%.*}/vte-$version.tar.xz )
|
||||
|
||||
build() {
|
||||
cd vte-$version
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--libexecdir=/usr/lib/$name \
|
||||
--disable-static \
|
||||
--disable-debugging \
|
||||
--enable-python \
|
||||
--disable-gtk-doc \
|
||||
--with-xft2 \
|
||||
--with-pangox
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
|
||||
rm -rf $PKG/usr/lib/libvte.la
|
||||
rm -rf $PKG/usr/lib/libvte.so*
|
||||
rm -rf $PKG/usr/lib/libvte.so.9.2800.2
|
||||
rm -rf $PKG/usr/lib/pkgconfig/
|
||||
rm -rf $PKG/usr/lib/vte/
|
||||
rm -rf $PKG/usr/include
|
||||
rm -rf $PKG/usr/share
|
||||
rm -rf $PKG/usr/bin
|
||||
rm -rf $PKG/usr/{share}/{gtk-doc,locale}
|
||||
rm -rf $PKG/usr/lib/vte/gnome-pty-helper
|
||||
}
|
Loading…
Reference in New Issue