blob: 81c68194bdd7026ed399070a170a02ef6d3a6265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Terminal pour gnome
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: libgnomeui, vte, startup-notification
# Run on: libgnomeui,vte,startup-notification
name=gnome-terminal
version=3.0.1
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib
make
make DESTDIR=$PKG install
rm -rf $PKG/var
}
|