summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpyros Stathopoulos2022-03-17 20:10:28 +0000
committerSpyros Stathopoulos2022-03-17 20:10:28 +0000
commitff1ad0af59247bd5272b4996595e729f9efde870 (patch)
tree1add089c2f40569fe0036613078248400a0cda42
parent4f104a1ec5c9c5f273db3623f117925b37505a3b (diff)
downloadaur-ff1ad0af59247bd5272b4996595e729f9efde870.tar.gz
Use the site-packages dir to install python files
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5a5ab65a2868..077327956ad1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gytparse
pkgdesc = Browse, stream and download Youtube videos
pkgver = 0.1.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/foucault/gytparse
arch = any
license = MPL2
diff --git a/PKGBUILD b/PKGBUILD
index 215a4e011a30..2a0deed13a34 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=gytparse
pkgver=0.1.1
-pkgrel=2
+pkgrel=3
arch=(any)
url='https://github.com/foucault/gytparse'
pkgdesc="Browse, stream and download Youtube videos"
@@ -17,8 +17,8 @@ sha256sums=('c0486d9aa2ca4e3c9ee74be1120231c0267a7a9c57ff267ed98aa6781228d863')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
meson . _build \
- -Dpython.purelibdir=/usr/lib/python${_pyver} \
- -Dpython.platlibdir=/usr/lib/python${_pyver} \
+ -Dpython.purelibdir=/usr/lib/python${_pyver}/site-packages \
+ -Dpython.platlibdir=/usr/lib/python${_pyver}/site-packages \
-Dprefix=/usr
}