~whynothugo/autovdirsyncer

81aa6e6b2aae76a3e4957020a5f562d5fe757ee3 — Hugo Osvaldo Barrera 2 years ago 3d1785b
Include an ArchLinux package
3 files changed, 42 insertions(+), 0 deletions(-)

A contrib/aur/.SRCINFO
A contrib/aur/.gitignore
A contrib/aur/PKGBUILD
A contrib/aur/.SRCINFO => contrib/aur/.SRCINFO +15 -0
@@ 0,0 1,15 @@
pkgbase = autovdirsyncer
	pkgdesc = Wrapper to daemonise vdirsyncer
	pkgver = 0.1.0
	pkgrel = 1
	url = https://git.sr.ht/~whynothugo/autovdirsyncer
	arch = x86_64
	arch = aarch64
	license = ISC
	makedepends = go
	source = git+https://git.sr.ht/~whynothugo/autovdirsyncer?signed#tag=v0.1.0
	validpgpkeys = 951082781CA308E4A529DEFD6F9FFF122B98C0CD
	md5sums = SKIP

pkgname = autovdirsyncer


A contrib/aur/.gitignore => contrib/aur/.gitignore +2 -0
@@ 0,0 1,2 @@
src
pkg

A contrib/aur/PKGBUILD => contrib/aur/PKGBUILD +25 -0
@@ 0,0 1,25 @@
# Maintainer: Hugo Osvaldo Barrera <hugo@barrera.io>

pkgname=autovdirsyncer
pkgver=0.1.0
pkgrel=1
pkgdesc="Wrapper to daemonise vdirsyncer"
arch=('x86_64' 'aarch64')
url="https://git.sr.ht/~whynothugo/autovdirsyncer"
license=('ISC')
makedepends=('go')
source=("git+https://git.sr.ht/~whynothugo/autovdirsyncer?signed#tag=v${pkgver}")
md5sums=('SKIP')
validpgpkeys=('951082781CA308E4A529DEFD6F9FFF122B98C0CD')

build() {
  cd "$srcdir/$pkgname"

  make build
}

package() {
  cd "$srcdir/$pkgname"

  make DESTDIR="$pkgdir/" install
}