blob: d8f38f60ccee9557f77e8ed6ece1212224efaa4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Initialiseur du Système X Window
# URL: http://xorg.freedesktop.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: xorg-server
# Run on:
name=xorg-xinit
version=1.3.0
release=1
source=(http://xorg.freedesktop.org/releases/individual/app/xinit-$version.tar.bz2\
xinitrc.patch)
build() {
cd xinit-$version
./configure $XORG_CONFIG
make
patch -Np1 -i ../xinitrc.patch
make DESTDIR=$PKG install
}
|