justcaptcha/build/archlinux/PKGBUILD

30 lines
633 B
Bash

# Maintainer: Alexander "Arav" Andreev <me@arav.top>
pkgname=justcaptcha-git
pkgver=1.0
pkgrel=1
pkgdesc="Just a CAPTCHA service"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://git.arav.top/Arav/justcaptcha"
license=('MIT')
groups=()
depends=()
makedepends=('git' 'go')
provides=('justcaptcha')
conflicts=('justcaptcha')
replaces=()
backup=()
options=()
install=
source=('justcaptcha-git::git+https://git.arav.top/Arav/justcaptcha.git')
noextract=()
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/"
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
}