Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0ADAD781C42 for ; Tue, 24 Dec 2019 17:43:10 +0000 (UTC) Received: (Migadu outbound); Tue, 24 Dec 2019 17:43:09 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from localhost.localdomain ([24.181.218.135]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 4E63A5A8-F20E-488C-B9E5-07AD802BFD8F.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Tue, 24 Dec 2019 17:43:08 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH v2] testing/dino: new aport Date: Tue, 24 Dec 2019 12:42:55 -0500 Message-Id: <20191224174255.2105-1-galen@galenabell.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20191224055341.GA846450@alpha> References: <20191224055341.GA846450@alpha> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=WhV/athk7EvUKovHZDPe76ich0QAB4pfUZ5O6LVhm6I=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=DbqDmbGo02a9D6hH1PR2vcu/D07KAHRubwEfJLsgDil4nhNoDKJqxHHIsfn5C223tZ4EnwWt8f4X9x8WYvJvAFtWuZNF6VJW98eipzZERbhuXDmkApvD4fqjKeni8lnJhc5GNg6O6ZjYadjwVuni4FSBbVZrwS4Mz02KKvHa2w0= https://dino.im Modern Jabber/XMPP client testing/ --- Thanks for the feedback! This patch changes the package name to Dino and fixes the package version as requested. testing/dino/APKBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 testing/dino/APKBUILD diff --git a/testing/dino/APKBUILD b/testing/dino/APKBUILD new file mode 100644 index 0000000000..f1860e8687 --- /dev/null +++ b/testing/dino/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: Galen Abell +# Maintainer: Galen Abell +pkgname="dino" +pkgver="0_git20191224" +_pkgsha="21c01dcdcb3ba7f7d5c6fcd18c5fd2117f050e5e" +pkgrel=0 +pkgdesc="Modern Jabber/XMPP client" +url="https://dino.im" +arch="all" +license="GPL-3.0-only" +makedepends=" + glib-dev + glib-networking + gtk+3.0-dev + gpgme-dev + libgee-dev + libgcrypt-dev + libsoup-dev + sqlite-dev + libqrencode-dev + cmake + vala + ninja +" +subpackages="$pkgname-lang" +source="$pkgname-$_pkgsha.tar.gz::https://github.com/dino/dino/archive/$_pkgsha.tar.gz" +builddir="$srcdir/$pkgname-$_pkgsha" + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --with-tests + make +} + +check() { + build/xmpp-vala-test + build/signal-protocol-vala-test +} + +package() { + make DESTDIR="$pkgdir" install +} +sha512sums="cc227c6bbcf62279aaf7a036ee9560b0dc7733c6774c934b16ac2b6546248ee6e48cdc06b62ea57b0e6cb1260c8f3155f18420796c325270316e1dbefb523da6 dino-21c01dcdcb3ba7f7d5c6fcd18c5fd2117f050e5e.tar.gz" -- 2.24.1