X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by lists.alpinelinux.org (Postfix) with ESMTP id 78ADC5C5085 for ; Sun, 17 Jun 2018 20:09:13 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id CE70820E62 for ; Sun, 17 Jun 2018 22:09:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1529266152; bh=39RnFf7py5lQ77Ub+XNSHYLL3a/3swMQsvCw+X6ioxw=; h=From:To:Cc:Subject:Date:From; b=BXXZahH8PJXo2Ax6rLyvtdWOzLH8LPW/RXt7IAEuD4ywHHsOf8iw3OEunBTpbJZ+T 9kmgbR4ARP3H1KEIIlGId8/DX3Sl50igoU4H4spEgmxrTXy/r+wlSd1c6fZ7WLY0cx WvrMyzzMTaHgSDOMBe3fS2nIOl1nXhS7dMOPYWzym0jaYgIIpq4kKwQ93lCsEx85K8 IBbfVMPScz5xvmEdvSN8rbw3+hYkVg/keEexdkXHoj7gJl8azP7XUVJu27RONNo2nu R3brMTgeuUAMgybQqdGBYIBrTteswE38tgWr8/5rZV7B70zXNRzReJjRyFGsM4+l5J VnfE4B+TxibXQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 41850R2tQrz9rxZ; Sun, 17 Jun 2018 22:09:10 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH v2] testing/quark: new aport Date: Sun, 17 Jun 2018 22:09:07 +0200 Message-Id: <20180617200907.18208-1-azarus@posteo.net> X-Mailer: git-send-email 2.17.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://tools.suckless.org/quark/ quark web server --- testing/quark/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/quark/APKBUILD diff --git a/testing/quark/APKBUILD b/testing/quark/APKBUILD new file mode 100644 index 0000000000..fcbd8a5802 --- /dev/null +++ b/testing/quark/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Sascha Paunovic +# Maintainer: Sascha Paunovic +pkgname=quark +pkgver=20180617 +_commit=ba38b0969f542e6e7d3f01ba500189a81ca32355 # there are no releases +pkgrel=0 +pkgdesc="quark web server" +url="https://tools.suckless.org/quark/" +arch="all" +license="ISC" +options="!check" # no test suite +subpackages="$pkgname-doc" +source="https://git.suckless.org/$pkgname/snapshot/$pkgname-$_commit.tar.gz" +builddir="$srcdir/$pkgname-$_commit" + +build() { + cd "$builddir" + make +} + +package() { + cd "$builddir" + make PREFIX=/usr DESTDIR="$pkgdir" install +} + +sha512sums="d74b9fa2315ae92a9048d8d9b82075986c2bab13ed85f4827ef39083fee9eaede880611b48b3359f7ead2901f0ffd261257c23066a82717697d78f924ac655fd quark-ba38b0969f542e6e7d3f01ba500189a81ca32355.tar.gz" -- 2.17.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---