# Maintainer: Aurelien Desbrieres # Contributor (Arch): Diogo Leal # Contributor: Luke Shumaker # Contributor (Arch): Matthias Maennich pkgname=command-not-found pkgver=0.4.5 pkgrel=2 pkgdesc="In case a command could not be found this utility searches for packages containing this or a similar command (bash,zsh)." arch=('i686' 'x86_64' 'mips64el') url="http://github.com/metti/command-not-found" license=('GPL3') depends=('boost-libs' 'tdb' 'libarchive' 'wget') makedepends=('boost' 'cmake') install='install' source=("https://repo.parabola.nu/other/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('cceea11367dd1847f08c94212f380ea5') mksource=("$pkgname-$pkgver::git+https://github.com/metti/$pkgname.git#tag=v${pkgver}") mkmd5sums=('SKIP') build() { cd "$srcdir/$pkgname-$pkgver" cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX="" src make } package(){ cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install }