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