summaryrefslogtreecommitdiff
path: root/pcr/gksu
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-05-03 11:12:35 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2018-05-03 11:48:47 -0400
commiteb4296d1081f75b383ba71f08a19b7be394ae007 (patch)
treeccc7ebe99e87bf113115de1ca4c61a96223fcd03 /pcr/gksu
parent5feb5e758ddb270d5ea88b2f3bac6037a43f6242 (diff)
restore gksu and libgksu - removed by arch
this still has dependents in parabola, such as octopi https://git.archlinux.org/svntogit/packages.git/log/?qt=grep&q=gksu
Diffstat (limited to 'pcr/gksu')
-rw-r--r--pcr/gksu/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/pcr/gksu/PKGBUILD b/pcr/gksu/PKGBUILD
new file mode 100644
index 000000000..880857ac9
--- /dev/null
+++ b/pcr/gksu/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: bill-auger <bill-auger@programmer.net>
+# Contributor: Jan de Groot <jgc@archlinux.org>
+# Contributor: Eduardo Lopes (eduol@gmx.net)
+
+
+pkgname=gksu
+pkgver=2.0.2
+pkgrel=6.parabola1
+pkgdesc="A graphical frontend for su"
+arch=('x86_64' 'i686')
+url="http://www.nongnu.org/gksu/index.html"
+license=('GPL')
+depends=('libgksu>=2.0.12' 'xorg-xauth')
+makedepends=('gtk-doc' 'intltool')
+source=(https://people.debian.org/~kov/gksu/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('a1de3dca039d88c195fcdc9516379439a1d699750417f1e655aa2101a955ee5a')
+
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-static \
+ --disable-nautilus-extension
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ rm -rf "${pkgdir}/usr/share/applications/"
+}