summaryrefslogtreecommitdiff
path: root/community/gamin
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-09-05 13:37:26 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-09-05 13:37:26 +0000
commitf651180e6b1ac9508ec0d1d9b94972de776020a9 (patch)
tree2c1f8d3bf28b5a52b186cfb6a67b6d092ddf21fc /community/gamin
parent6dee0a203a8290427ca77705bc1cae90381529b2 (diff)
Mon Sep 5 13:37:24 UTC 2011
Diffstat (limited to 'community/gamin')
-rw-r--r--community/gamin/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/community/gamin/PKGBUILD b/community/gamin/PKGBUILD
deleted file mode 100644
index 7bfc322ac..000000000
--- a/community/gamin/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 30749 2010-10-20 11:18:33Z schuay $
-# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
-# Contributor: Pulphix <crimea.v@libero.it>
-
-pkgname=gamin
-pkgver=0.1.10
-pkgrel=4
-pkgdesc='File and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor).'
-url='http://www.gnome.org/~veillard/gamin'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('glib2')
-makedepends=('python2')
-options=('libtool')
-optdepends=('python2: for the python module.')
-provides=('fam')
-conflicts=('fam')
-source=("http://www.gnome.org/~veillard/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz")
-md5sums=('b4ec549e57da470c04edd5ec2876a028')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # python 2
- sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' python/gamin.py
-
- ./configure --prefix=/usr --disable-static --with-threads \
- --disable-debug-api --disable-debug --libexecdir=/usr/lib/gamin \
- --with-python=/usr/bin/python2
- make
-}
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
-# vim:set ts=2 sw=2 et: