summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfdev312019-03-22 20:37:57 +0100
committerfdev312019-03-22 20:37:57 +0100
commit4b328061e970f2134bb16248d0303fc3ea3f0df2 (patch)
tree916b2a1e054b9e53b0ce2f6c77db5b557d9c3d0f
parent7f81de34cfc3ae5054494f2937c39010e7b2a52d (diff)
downloadaur-etm.tar.gz
make it buildable
-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."
}