24 lines
493 B
Bash
24 lines
493 B
Bash
# Maintainer: Luke T. Shumaker <lukeshu@umorpha.io>
|
|
|
|
pkgname=umorpha-avatard
|
|
pkgver=0.0.2
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
pkgdesc='Umorpha profile-pic server'
|
|
url="https://git.mothstuff.lol/lukeshu/avatard"
|
|
license=('AGPL')
|
|
depends=(imagemagick)
|
|
makedepends=(git go)
|
|
source=("git+https://git.mothstuff.lol/lukeshu/avatard.git#commit=a17ae037373e725d6d6273a932b8f0f05f0a07d4")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd avatard
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd avatard
|
|
install -D avatard "$pkgdir/usr/bin/avatard"
|
|
}
|