justcaptcha/build/archlinux/PKGBUILD

30 lines
627 B
Bash
Raw Normal View History

# Maintainer: Alexander "Arav" Andreev <me@arav.top>
2022-08-24 21:22:54 +04:00
pkgname=justcaptcha
2022-08-19 02:26:03 +04:00
pkgver=1.1.2
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=
2022-08-24 21:22:54 +04:00
source=('justcaptcha::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
}