Package Details: multiwatch 1.0.0-1

Git Clone URL: https://aur.archlinux.org/multiwatch.git (read-only, click to copy)
Package Base: multiwatch
Description: Forks and watches multiple instances of a program in the same context
Upstream URL: http://redmine.lighttpd.net/projects/multiwatch/wiki
Licenses: MIT
Submitter: kevr
Maintainer: kevr
Last Packager: kevr
Votes: 2
Popularity: 0.000000
First Submitted: 2016-03-28 00:58 (UTC)
Last Updated: 2016-03-28 00:58 (UTC)

Latest Comments

mansuetus commented on 2025-09-22 15:13 (UTC)

These are required updates to PKGBUILD to have 1.0.1 working.

# Maintainer: Paul Dann <pdgiddie at gmail dot com>
pkgname=multiwatch
pkgver='1.0.1'
pkgrel=1
pkgdesc='Forks and watches multiple instances of a program in the same context'
arch=('i686' 'x86_64')
url="http://redmine.lighttpd.net/projects/multiwatch/wiki"
license=('MIT')
depends=('libev')
makedepends=('cmake')
source=("http://download.lighttpd.net/multiwatch/releases-1.x/multiwatch-$pkgver.tar.xz")
sha256sums=('e8a68f2c86f99e34c86acf7325fe6d19c8175935f2521314552dce63be22f164')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  rm -rf build
  meson setup build --prefix /usr/local
  meson compile -C build
}

package() {
  cd "$srcdir/$pkgname-$pkgver/build"
  install -Dm 755 multiwatch $pkgdir/usr/bin/multiwatch
}

# vim:set ts=2 sw=2 et:

Namarrgon commented on 2025-06-17 13:32 (UTC)

1.0.1 supports meson so we don't have to fight cmake policies anymore. https://paste.xinu.at/Vce/

kevr commented on 2016-03-28 00:59 (UTC)

Pushed up the aur-mirror version of multiwatch to be a current AUR package for convenience.