From 4d7fa442d59aef817f3355e73348b98da5f45652 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 4 Apr 2021 20:46:18 +0200 Subject: [PATCH] Fixing github's pkgbuild --- deployment/PKGBUILD.github | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/deployment/PKGBUILD.github b/deployment/PKGBUILD.github index e4feab6d..d28f27df 100644 --- a/deployment/PKGBUILD.github +++ b/deployment/PKGBUILD.github @@ -11,11 +11,10 @@ groups=() depends=("postgresql") makedepends=() install="kyoo.install" -source=("pkg") -sha256sums=("SKIP") - -build() { } +# The output folder is needed but we can't use directory in the source array. +source=() +sha256sums=() package() { - cp -r --no-preserve ownership "$srcdir" "$pkgdir" + cp -r --no-preserve ownership "$srcdir/output/*" "$pkgdir" }