Skip to content

Instantly share code, notes, and snippets.

@tlvince
Created January 16, 2011 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlvince/781826 to your computer and use it in GitHub Desktop.
Save tlvince/781826 to your computer and use it in GitHub Desktop.
--- PKGBUILD-old 2011-01-16 22:19:20.630000164 +0800
+++ PKGBUILD-new 2011-01-16 22:22:35.366666832 +0800
@@ -1,23 +1,21 @@
-# INotifyX: Installer: Arch
-# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
+# Maintainer: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
+# Contributor: Tom Vincent <http://www.tlvince.com/contact/>
pkgname=inotifyx
pkgver=0.1.1
-pkgrel=1
+pkgrel=2
pkgdesc="A simple Python binding to the Linux inotify file system event monitoring API"
arch=("i686" "x86_64")
url="http://www.alittletooquiet.net/software/${pkgname}/"
license=("MIT")
-depends=("python")
-makedepends=("gcc")
+depends=("python2")
options=(!emptydirs)
source=(http://www.alittletooquiet.net/media/release/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('e6c0131b9ac0dcf755ee48ceecc3723513afd372')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
# Install
- python setup.py install --prefix=/usr --root=${pkgdir} || return 1
+ python2 setup.py install --prefix=/usr --root=${pkgdir} || return 1
}
-
-sha1sums=('e6c0131b9ac0dcf755ee48ceecc3723513afd372')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment