summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authort00n2017-03-16 15:36:14 +0100
committert00n2017-03-16 15:36:14 +0100
commitbeeedf57180f89f4221463c915e3a332d76237c1 (patch)
treed95d5d7af185947744e5574dbc142ec435f831a4
parent4a2e9fe77ed6bb125c096b6679c42289158d3b78 (diff)
downloadaur-beeedf57180f89f4221463c915e3a332d76237c1.tar.gz
[fix] pkgdir
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 049d21fc9a56..081a811d3ebb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python0.9
pkgdesc = The oldest version of Python I could find
pkgver = 0.9.1
- pkgrel = 2
+ pkgrel = 3
epoch = 1
url = https://www.python.org
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index a440ae437651..b9fc486ef796 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer : Antoine Carpentier
pkgname=python0.9
pkgver=0.9.1
-pkgrel=2
+pkgrel=3
epoch=1
pkgdesc="The oldest version of Python I could find"
arch=('any')
@@ -29,6 +29,6 @@ build()
package()
{
mkdir -p $pkgdir/usr/bin
- install -m 775 python-0.9.1/src/python $pkgdir/usr/bin/python0.9
+ install -m 775 $srcdir/python-0.9.1/src/python $pkgdir/usr/bin/python0.9
}