summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authort00n2017-03-16 15:34:52 +0100
committert00n2017-03-16 15:34:52 +0100
commit4a2e9fe77ed6bb125c096b6679c42289158d3b78 (patch)
treebe08ccfc44811fe41aa43d8c9c6fc4a541844161
parent2f82bcb06ee6dc77abdd3c9a0a5169f123d7c843 (diff)
downloadaur-4a2e9fe77ed6bb125c096b6679c42289158d3b78.tar.gz
[fix] srcdir
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a220deaedc69..049d21fc9a56 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python0.9
pkgdesc = The oldest version of Python I could find
- pkgver = 0.9
- pkgrel = 1
+ pkgver = 0.9.1
+ pkgrel = 2
epoch = 1
url = https://www.python.org
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index aa322a5beb70..a440ae437651 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer : Antoine Carpentier
pkgname=python0.9
-pkgver=0.9
-pkgrel=1
+pkgver=0.9.1
+pkgrel=2
epoch=1
pkgdesc="The oldest version of Python I could find"
arch=('any')
@@ -15,13 +15,13 @@ CFLAGS=""
prepare()
{
- cd python-0.9.1/src
+ cd $srcdir/python-0.9.1/src/
sed -i "s/mv @python python//g" Makefile
}
build()
{
- cd python-0.9.1/src
+ cd $srcdir/python-0.9.1/src/
make clean
make python
}