24 lines
496 B
Bash
24 lines
496 B
Bash
|
# Maintainer: Luke T. Shumaker <lukeshu@umorpha.io>
|
||
|
|
||
|
pkgname=umorpha-www
|
||
|
pkgver=2024.02.07
|
||
|
pkgrel=1
|
||
|
arch=('any')
|
||
|
pkgdesc='Umorpha website'
|
||
|
url="https://git.mothstuff.lol/lukeshu/web"
|
||
|
license=('AGPL')
|
||
|
makedepends=(go tidy python-jsbeautifier)
|
||
|
source=("git+https://git.mothstuff.lol/lukeshu/web.git#commit=dd58c2e1ec7aefb96a09d9537f6515c40f2bebb4")
|
||
|
sha256sums=('SKIP')
|
||
|
|
||
|
build() {
|
||
|
cd web
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd web
|
||
|
install -d "$pkgdir/srv/http"
|
||
|
cp -r static "$pkgdir/srv/http/www.umorpha.io"
|
||
|
}
|