summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 350595b2927b..147d2bda08a5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = etm
pkgdesc = Manage events and tasks using simple text files
pkgver = 891
- pkgrel = 3
+ pkgrel = 4
url = http://www.duke.edu/~dgraham/ETM/
arch = any
license = GPL
- makedepends = setuptools
+ makedepends = python2-setuptools
depends = python2
depends = python2-distribute
depends = python2-dateutil
diff --git a/PKGBUILD b/PKGBUILD
index 361018011f34..a14c78a1d462 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,17 +5,18 @@
pkgname=etm
pkgver=891
-pkgrel=3
+pkgrel=4
pkgdesc="Manage events and tasks using simple text files"
arch=('any')
url="http://www.duke.edu/~dgraham/ETM/"
license=('GPL')
depends=('python2' 'python2-distribute' 'python2-dateutil' 'wxpython')
-makedepends=('setuptools')
+makedepends=('python2-setuptools')
source=(http://www.duke.edu/~dgraham/ETM/$pkgname-$pkgver.tar.gz)
md5sums=('4e4cd162a9103debc2596401a1acfaae')
package() {
cd "$srcdir/$pkgname-$pkgver"
python2 setup.py install --prefix=/usr --root=$pkgdir
+ echo "Consider moving to etmtk or another maintained alternative."
}