# Maintainer: Marcin Tydelski # Contributor: Brian Douglass _pkgname=clickable pkgname=clickable-git pkgver=5.0.0.r8.gabd7ca3 pkgrel=1 pkgdesc='Compile, build, and deploy Ubuntu Touch click packages all from the command line.' arch=('i686' 'x86_64') url='https://gitlab.com/clickable/clickable' license=('GPL3') depends=('python-cookiecutter' 'docker' 'android-tools') optdepends=('lxd: use lxd instead of docker (deprecated)' 'xorg-xhost: for running on the desktop' 'nvidia-docker-1.0.1: use clickable'\''s desktop mode with proprietary Nvidia drivers') makedepends=('git') provides=("$_pkgname") conflicts=("$_pkgname") source=('git+https://gitlab.com/clickable/clickable.git') sha256sums=('SKIP') pkgver() { cd $_pkgname git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd $_pkgname python setup.py build } package() { cd $_pkgname python setup.py install --root="$pkgdir/" --optimize=1 --skip-build }