summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4766e94a746bf97503155c9a882ec83c2f5d12f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}