summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 31270cdb5a1232f741552b8f6dad184d869112f6 (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: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=mdliveview
pkgver=1.1
pkgrel=1
pkgdesc="Mdliveview is a lightweight Markdown file viewer with autoreload"
url="https://github.com/Geballin/Mdliveview"
arch=('x86_64' 'i686')
license=('BSD')
depends=('tcl' 'tk' 'gifblock' 'tkhtml' 'tkimg')
optdepends=()
makedepends=(make gcc)
conflicts=()
replaces=()
backup=()
install=
source=("https://github.com/Geballin/Mdliveview/archive/${pkgver}.tar.gz")

md5sums=(b985690f7cfd8dab58166325ca47b6f3)

build() {
  cd ${srcdir}/Mdliveview-${pkgver}
  ./configure --prefix=/usr
  make
}

package() {
  cd ${srcdir}/Mdliveview-${pkgver}
  make DESTDIR="${pkgdir}" install
}