24 lines
766 B
Plaintext
24 lines
766 B
Plaintext
# Description: Xfce4 Terminal is a GTK+ 2 terminal emulator. This is useful for running commands or programs in the comfort of an Xorg window; you can drag and drop files into the Xfce4 Terminal or copy and paste text with your mouse.
|
|
# URL: http://www.os-cillation.com/index.php?id=42&L=5
|
|
# Packager: tyrry at nutyx dot org, tnut at nutyx dot org
|
|
# Depends on: exo vte
|
|
description="Terminal emulator from Xfce4."
|
|
name=xfce4-terminal
|
|
version=0.6.3
|
|
release=3
|
|
|
|
source=(http://archive.xfce.org/src/apps/${name}/${version%.*}/$name-$version.tar.bz2 )
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--disable-debug
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|