24 lines
501 B
Bash
24 lines
501 B
Bash
# Maintainer: Luke T. Shumaker <lukeshu@umorpha.io>
|
|
|
|
pkgname=umorpha-www
|
|
pkgver=2024.02.09.1
|
|
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=e6d64bde693fcda92555e3e19fc5bfedfc20e7d5")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd web
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd web
|
|
install -d "$pkgdir/srv/http"
|
|
cp -r static "$pkgdir/srv/http/www.umorpha.io"
|
|
}
|