summaryrefslogtreecommitdiff
path: root/pcr/command-not-found
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
commit462391357aa5e749dc9908c15f3baa0b4416f3d8 (patch)
tree11d4d3f054aae9ffd869adc634054f64a16d83b8 /pcr/command-not-found
parent748e32a3a886569b58a27003e85b76be5746153d (diff)
Tue Jan 28 03:22:21 UTC 2014
Diffstat (limited to 'pcr/command-not-found')
-rw-r--r--pcr/command-not-found/PKGBUILD32
-rw-r--r--pcr/command-not-found/install13
2 files changed, 0 insertions, 45 deletions
diff --git a/pcr/command-not-found/PKGBUILD b/pcr/command-not-found/PKGBUILD
deleted file mode 100644
index e2131a3d5..000000000
--- a/pcr/command-not-found/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Maintainer: Aurelien Desbrieres <aurelien@cwb.io>
-# Contributor: Diogo Leal <estranho@diogoleal.com>
-# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
-# Contributor: Matthias Maennich <arch@maennich.net>
-
-pkgname=command-not-found
-pkgver=0.4.5
-pkgrel=1
-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')
-url="http://github.com/metti/command-not-found"
-license=('GPL3')
-depends=('boost-libs' 'tdb' 'libarchive' 'wget')
-makedepends=('boost' 'cmake')
-install='install'
-
-source=("libre://$pkgname-$pkgver.tar.gz")
-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
-}
-
-md5sums=('c055522251b2c58b9c6e0d0f0df481c0')
diff --git a/pcr/command-not-found/install b/pcr/command-not-found/install
deleted file mode 100644
index 50e601258..000000000
--- a/pcr/command-not-found/install
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
- cnf-sync
-}
-
-post_upgrade() {
- cnf-sync
-}
-
-pre_remove() {
- rm -f /var/lib/cnf/*.{db,tbd}
-}
-
-# vim:set ts=2 sw=2 et: