blob: a4e11d0d16b54057adca049ad423ba42b64b49ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Andrea Giammarchi <andrea.giammarchi@gmail.com>
pkgname=tmd-git
pkgver=0.1.2
pkgrel=1
pkgdesc="A Tiny Markdown Parser"
url="https://github.com/WebReflection/tmd/#readme"
arch=(any)
license=(ISC)
makedepends=(gcc cmake)
provides=(tmd)
conflicts=(tmd)
source=("git+https://github.com/WebReflection/tmd.git")
sha256sums=('SKIP')
pkgver() {
cd tmd
git describe --tags | sed 's/-/+/g'
}
build() {
cd tmd
make
}
package() {
cd tmd
install -D tmd "${pkgdir}/usr/local/bin/tmd"
}
|