X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id C8DDEDC02F6 for ; Mon, 20 Apr 2015 11:23:19 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 958FFDC02A3 for ; Mon, 20 Apr 2015 11:23:14 +0000 (UTC) Received: from [81.4.121.188] (port=55552 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1Yk9nB-004Geh-Jh; Mon, 20 Apr 2015 12:23:10 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH] testing/ktsuss: new aport Date: Mon, 20 Apr 2015 11:23:06 +0000 Message-Id: <1429528986-99117-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.3.5 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: lightweight alternative to gksu for use with spacefm --- testing/ktsuss/APKBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 testing/ktsuss/APKBUILD diff --git a/testing/ktsuss/APKBUILD b/testing/ktsuss/APKBUILD new file mode 100644 index 0000000..899e8db --- /dev/null +++ b/testing/ktsuss/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=ktsuss +pkgver=2.1 +pkgrel=0 +pkgdesc="Graphical version of su written in C and GTK+ (gksu alternative)" +url="https://github.com/nomius/ktsuss" +arch="all" +license="BSD" +depends="" +depends_dev="" +makedepends="$depends_dev gtk+2.0-dev bash libtool m4 autoconf automake" +install="" +subpackages="$pkgname-doc" +source="saveas-https://github.com/nomius/$pkgname/archive/$pkgver.tar.gz/${pkgname}-${pkgver}.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./autogen.sh + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install + install -D -m644 COPYING "${pkgdir}/usr/share/doc/${pkgname}/COPYING" +} + +md5sums="812ef25c189af1998b66a5403a12fff9 ktsuss-2.1.tar.gz" +sha256sums="f65f5083e61abc12f5b546ef43efdc8ef55cd8c7fbee27cedc0f42ff329b34ac ktsuss-2.1.tar.gz" +sha512sums="980c184947ebac91f936cad9cd74050e42e57da39f13cca3b9ec0ec44a16265243a1e6f570a2027435234084c1e15ce28b3dc6389d7831237c762b1aafb99507 ktsuss-2.1.tar.gz" -- 2.3.5 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---