# Maintainer: José Luis Lafuente # Original maintainer: Michael Louis Thaler pkgname=watchman pkgver=3.2.0 pkgrel=0 pkgdesc="An inotify-based file watching and job triggering command line utility" url="https://facebook.github.io/watchman/" arch=('x86_64' 'i686') license=('Apache') depends=('glibc' 'pcre') optdepends=() makedepends=() conflicts=() replaces=() backup=() source=("${pkgname}-${pkgver}.tar.gz::https://github.com/facebook/watchman/archive/v${pkgver}.tar.gz") sha256sums=('7ef7edb3cff99d6580630d65aedaae350308ed1ad71f30718ae7bf968b61140c') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./autogen.sh ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install } # vim:set ts=2 sw=2 et: