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 21:58:37 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-08-19 21:58:37 +0000
commit5af6e262e9778ff49848bcabbd40f24e4692e720 (patch)
tree5386910d7467f9140cf3397bca361323adec031c
parent1742139e35f424d0e049fd17aba9049acc1cf722 (diff)
Added a PKGBUILD for python-archinstall. Which is just a Arch Linux native way of installing the pypi/pip version of archinstall.
-rw-r--r--PKGBUILD/archinstall/PKGBUILD (renamed from PKGBUILD)3
-rw-r--r--PKGBUILD/python-archinstall/PKGBUILD26
2 files changed, 28 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD/archinstall/PKGBUILD
index 702575f9..9f2579a4 100644
--- a/PKGBUILD
+++ b/PKGBUILD/archinstall/PKGBUILD
@@ -10,8 +10,9 @@ provides=("${pkgname}")
md5sums=('SKIP')
arch=('x86_64')
source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/Torxed/archinstall/archive/v$pkgver.tar.gz")
-depends=('python>=3.8')
+#depends=('python>=3.8')
makedepends=('python>=3.8' 'nuitka')
+#optdepends=('python>=3.8: Installs archinstall as a python library (same as pip install --upgrade archinstall)')
build() {
cd "${pkgname}-${pkgver}"
diff --git a/PKGBUILD/python-archinstall/PKGBUILD b/PKGBUILD/python-archinstall/PKGBUILD
new file mode 100644
index 00000000..276f6acf
--- /dev/null
+++ b/PKGBUILD/python-archinstall/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Anton Hvornum anton@hvornum.se
+# Contributor: Anton Hvornum anton@hvornum.se
+pkgname="archinstall"
+pkgver="2.0.4rc4"
+pkgdesc="Installs ${pkgname} as a python library."
+pkgrel=1
+url="https://github.com/Torxed/archinstall"
+license=('GPLv3')
+provides=("${pkgname}")
+md5sums=('SKIP')
+arch=('x86_64')
+source=("${pkgname}-v${pkgver}-x86_64.tar.gz::https://github.com/Torxed/archinstall/archive/v$pkgver.tar.gz")
+depends=('python>=3.8')
+#optdepends=('python-pip: Adds pip version handling and management.')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ python3 setup.py build
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}