blob: 142e712722a790cb53ccf630be369a67a81ccc10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Systeme d'abstraction de materiel
# URL: http://hal.freedesktop.org/docs/polkit-gnome
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: polkit, gtk3
# Run on: polkit,gtk3
name=polkit-gnome
version=0.103
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/$version/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/polkit-gnome \
--mandir=/usr/share/man \
--localstatedir=/var \
--with-os-type=lfs
make
make DESTDIR=$PKG install
}
|