# Maintainer (AUR): Michael Lass # Contributor (AUR): Justin Dray # Contributor (AUR): Patrick McCarty # Contributor (AUR): Bartłomiej Piotrowski # Contributor (AUR): Thomas S Hatch # Contributor (AUR): Michael P # Contributor (AUR): Matt Heagney # This PKGBUILD is maintained on github: # https://github.com/michaellass/AUR # parabola changes and rationale: # - removed buildtime optdepends pkgname=multipath-tools pkgver=0.7.4 pkgrel=1 pkgdesc='Multipath tools for Linux (including kpartx)' arch=('i686' 'x86_64' 'armv7h') url="http://christophe.varoqui.free.fr/" license=('GPL2') depends=('libaio' 'device-mapper' 'json-c' 'liburcu') makedepends=('git') conflicts=('multipath-tools-git') install=multipath-tools.install source=("multipath-tools::git+http://git.opensvc.com/multipath-tools/.git#tag=${pkgver}") sha256sums=('SKIP') prepare() { cd "${srcdir}/${pkgname}" # Fix bindir in Makefile sed -i 's|$(exec_prefix)/sbin|$(exec_prefix)/bin|g' Makefile.inc } build() { cd "${srcdir}/${pkgname}" make } package() { cd "${srcdir}/${pkgname}" make \ DESTDIR="${pkgdir}" \ exec_prefix="/usr" \ LIB="/usr/lib" \ install }