blob: 53ae8c0bdb40041812f2211b6b7c6419b64f1e42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Programmes pour gérer les utilisateurs, initialisation de fichiers, programateur de tâches, et connections réseaux pour KDE
# URL: http://kde.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: kdebase3
name=kdeadmin3
version=3.5.10
release=2
source=(ftp://ftp.lip6.fr/pub/X11/kde/stable/$version/src/kdeadmin-$version.tar.bz2 \
http://nutyx.meticul.eu/files/patchs/$name/kdedmin-3.5.10-nutyx-1.patch)
build() {
cd kdeadmin-$version
patch -Np1 -i ../kdedmin-3.5.10-nutyx-1.patch
export DO_NOT_COMPILE=kpackage
./configure --prefix=/opt/kde \
--disable-debug \
--without-rpm \
--with-shadow \
--disable-dependency-tracking \
--enable-final
make
make DESTDIR=$PKG install
}
|