blob: 33f94bae8546dd03f25b8e8d5a7fd28fe57060aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Permet la gestion des réseaux sans fils
# URL: http://www.gnome.org/projects/NetworkManager/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: dbus-glib, hal, intltool, libnl, policykit, nss, wireless_tools, ppp, nss, gudev, polkit, iptables
name=networkmanager
version=0.8
release=1
_name=NetworkManager
source=(http://ftp.gnome.org/pub/gnome/sources/${_name}/${version%}/${_name}-$version.tar.bz2)
build() {
cd ${_name}-$version
./configure --prefix=/usr \
--with-distro=redhat \
--without-gnome \
--without-dhcdbd
make
make DESTDIR=$PKG install
}
|