2019-05-01 15:26:05 +02:00
|
|
|
# Description: A simple policyKit authentication agent for Xfce DE
|
|
|
|
# URL: https://github.com/ncopa/xfce-polkit
|
2019-05-17 02:16:58 +02:00
|
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
2019-05-01 15:26:05 +02:00
|
|
|
# Depends on: gtk3 polkit
|
|
|
|
|
|
|
|
name=xfce-polkit
|
|
|
|
version=0.3
|
2019-06-01 12:49:24 +02:00
|
|
|
release=3
|
|
|
|
source=(https://github.com/ncopa/$name/releases/download/v$version/$name-$version.tar.gz)
|
2019-05-01 15:26:05 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
|
|
|
|
cd $name-$version
|
|
|
|
aclocal
|
|
|
|
autoconf
|
|
|
|
automake --add-missing
|
|
|
|
./configure \
|
2019-05-09 14:26:53 +02:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/$name
|
2019-05-01 15:26:05 +02:00
|
|
|
|
|
|
|
make
|
2019-05-09 14:26:53 +02:00
|
|
|
|
2019-05-01 15:26:05 +02:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|