diff options
author | Galen Abell <galen@galenabell.com> | 2020-02-14 08:15:30 -0500 |
---|---|---|
committer | Milan P. Stanić <mps@arvanta.net> | 2020-02-14 14:52:08 +0100 |
commit | d40afe9e1ab0727d363cc8cf9e13dc82b0cd26ee (patch) | |
tree | d281ee693d2ded018f57a198f11068e0bf51f38e /testing/mdp | |
parent | 831e8b6c2320074746f4b92700064721f1872c42 (diff) | |
download | aports-d40afe9e1ab0727d363cc8cf9e13dc82b0cd26ee.tar.bz2 aports-d40afe9e1ab0727d363cc8cf9e13dc82b0cd26ee.tar.xz |
testing/mdp: new aport
https://github.com/visit1985/mdp
A command-line based markdown presentation tool
testing/
Diffstat (limited to 'testing/mdp')
-rw-r--r-- | testing/mdp/APKBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/mdp/APKBUILD b/testing/mdp/APKBUILD new file mode 100644 index 0000000000..6cced9038a --- /dev/null +++ b/testing/mdp/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: Galen Abell <galen@galenabell.com> +# Maintainer: Galen Abell <galen@galenabell.com> +pkgname=mdp +pkgver=1.0.15 +pkgrel=0 +pkgdesc="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" |