Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-08-19 22:05:21 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-08-19 22:05:21 +0000
commitba9d5c746f7e94b59befdcf469558e3532f4e590 (patch)
tree69b974fb9dc987205daa07b8dbe9faee3e82ab48
parent5af6e262e9778ff49848bcabbd40f24e4692e720 (diff)
Wrong $pkgname, adjusted.
-rw-r--r--PKGBUILD/python-archinstall/PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD/python-archinstall/PKGBUILD b/PKGBUILD/python-archinstall/PKGBUILD
index 276f6acf..064c8b3d 100644
--- a/PKGBUILD/python-archinstall/PKGBUILD
+++ b/PKGBUILD/python-archinstall/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Anton Hvornum anton@hvornum.se
# Contributor: Anton Hvornum anton@hvornum.se
-pkgname="archinstall"
+pkgname="python-archinstall"
pkgver="2.0.4rc4"
pkgdesc="Installs ${pkgname} as a python library."
pkgrel=1
@@ -14,13 +14,13 @@ depends=('python>=3.8')
#optdepends=('python-pip: Adds pip version handling and management.')
build() {
- cd "${pkgname}-${pkgver}"
+ cd "archinstall-${pkgver}"
python3 setup.py build
}
package() {
- cd "${pkgname}-${pkgver}"
+ cd "archinstall-${pkgver}"
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
}