diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..4766e94a746b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Bruno Santos <brunomanuelsantos@tecnico.ulisboa.pt> + +upstream_name=hawkmoth +aur_name=python-sphinx-hawkmoth +pkgname=$aur_name-git +pkgver=latest +pkgrel=1 +pkgdesc='Sphinx autodoc C extension' +arch=('i686' 'x86_64') +url='https://github.com/jnikula/hawkmoth' +license=('BSD2') +depends=('python-sphinx' 'clang') +provides=($aur_name) +conflicts=($aur_name) +source=('git+https://github.com/jnikula/hawkmoth') +md5sums=('SKIP') + +package() { + dest=$pkgdir/usr/lib/python3.7/site-packages/$aur_name + mkdir -p $dest + cp -r $srcdir/$upstream_name/$upstream_name/* $dest +} |