31 lines
807 B
Plaintext
31 lines
807 B
Plaintext
|
# Tanım: GNOME için eski polkit kimlik doğrulama aracı
|
|||
|
# URL: http://hal.freedesktop.org/docs/polkit-gnome
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: polkit gtk3
|
|||
|
|
|||
|
isim=polkit-gnome
|
|||
|
surum=0.105
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://ftp.gnome.org/pub/gnome/sources/$isim/0.105/$isim-$surum.tar.xz)
|
|||
|
derle() {
|
|||
|
cd $isim-$surum
|
|||
|
./configure --prefix=/usr \
|
|||
|
--libexecdir=/usr/lib/polkit-gnome
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
mkdir -p $PKG/etc/xdg/autostart
|
|||
|
cat > $PKG/etc/xdg/autostart/polkit-gnome-authentication-agent-1.desktop << "EOF"
|
|||
|
[Desktop Entry]
|
|||
|
Name=PolicyKit Authentication Agent
|
|||
|
Comment=PolicyKit Authentication Agent
|
|||
|
Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
|||
|
Terminal=false
|
|||
|
Type=Application
|
|||
|
Categories=
|
|||
|
NoDisplay=true
|
|||
|
OnlyShowIn=GNOME;XFCE;Unity;
|
|||
|
AutostartCondition=GNOME3 unless-session gnome
|
|||
|
EOF
|
|||
|
}
|