# Maintainer: Anton Hvornum # Contributor: Giancarlo Razzolini # Contributor: demostanis worlds pkgname=archinstall-git pkgver=$(git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g') pkgrel=1 pkgdesc="Just another guided/automated Arch Linux installer with a twist" arch=('any') url="https://github.com/archlinux/archinstall" license=('GPL') depends=('python') makedepends=('python-setuptools') provides=('python-archinstall') conflicts=('archinstall' 'python-archinstall' 'python-archinstall-git') build() { cd "$startdir" python setup.py build } package() { cd "$startdir" python setup.py install --root="${pkgdir}" --optimize=1 --skip-build }