summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a3e63e4bb0a71d6369b41fb42d336e9ba7aa794e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Luke Tuthill <lukemtuthill@gmail.com>
pkgname=mdn
pkgver=1.2
pkgrel=1
pkgdesc="Tool to manage markdown notes"
arch=("any")
url="https://github.com/lyneca/mdn"
license=('MIT')
source=("$pkgname::git+https://github.com/lyneca/mdn")
depends=('bash')
optdepends=('pandoc: pdf generation support')
sha1sums=('SKIP')

package() {
    cd "$pkgname"
    mkdir -p $pkgdir/usr/bin
    install -Dm755 ./mdn $pkgdir/usr/bin/$pkgname
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}