Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 8BA4E781A58 for ; Fri, 14 Feb 2020 13:15:35 +0000 (UTC) Received: (Migadu outbound); Fri, 14 Feb 2020 13:15:34 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from loki.galenabell.com (24-181-218-135.dhcp.hckr.nc.charter.com [24.181.218.135]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id B01105E2-53FF-4F8B-B012-9497CC38A6F6.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Fri, 14 Feb 2020 13:15:33 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH] testing/mdp: new aport Date: Fri, 14 Feb 2020 08:15:30 -0500 Message-Id: <20200214131530.27910-1-galen@galenabell.com> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=ZI7/xFfaCWDfiaJW0xzwoneBrj2Wn3aErf13d5GtOso=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=LaRH2jQarte+vD7KvlkJqaVv6uzGxZobLdJvpZjWctTMlo4/+4xtxvWq8u+pCBJ4nmcdHvvvTYhbCf7Oqn7g8SRAm1yCMFBi1ZhvGE247TiIjcXNnjlUFU3IvLubxP28nHLLkQGpcwGM+BTREBYEAPmpC+CUnjK+vS6aESsxfG8= https://github.com/visit1985/mdp A command-line based markdown presentation tool testing/ --- testing/mdp/APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 testing/mdp/APKBUILD diff --git a/testing/mdp/APKBUILD b/testing/mdp/APKBUILD new file mode 100644 index 0000000000..455c5312ce --- /dev/null +++ b/testing/mdp/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: Galen Abell +# Maintainer: Galen Abell +pkgname="mdp" +pkgver="1.0.15" +pkgrel=0 +pkgdesc="A command-line based markdown presentation tool" +url="https://github.com/visit1985/mdp" +arch="all" +license="GPL-3.0-only" +makedepends="ncurses-dev" +options="!check" # no tests +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/visit1985/mdp/archive/$pkgver.tar.gz" + +build() { + make PREFIX=/usr +} + +package() { + make PREFIX=/usr DESTDIR="$pkgdir" install +} +sha512sums="88337224dc7b58bc82f68861083e31ac429ff97e6dfcf7a66042c302205ca01947df35445e0b4683c5c5a998c493db882d3aaff462673b5a387865c33752bb0e mdp-1.0.15.tar.gz" -- 2.25.0