Synced upstream & added ci config
ci/woodpecker/push/woodpecker Pipeline failed
Details
ci/woodpecker/push/woodpecker Pipeline failed
Details
parent
3e423be5fb
commit
b59eb01d37
|
@ -0,0 +1,20 @@
|
|||
pipeline:
|
||||
build:
|
||||
image: 'archlinux:latest'
|
||||
commands:
|
||||
# Update packages
|
||||
- pacman -Syu --needed --noconfirm base-devel
|
||||
# Create non-root user to perform build & switch to their home
|
||||
- groupadd -g 1000 builder
|
||||
- useradd -mg builder builder
|
||||
- chown -R builder:builder "$PWD"
|
||||
- "echo 'builder ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
|
||||
- su builder
|
||||
# Build the package
|
||||
- makepkg -s --noconfirm --needed
|
||||
|
||||
publish:
|
||||
image: 'archlinux:latest'
|
||||
commands:
|
||||
# Publish the package
|
||||
- 'curl -F "file=@$(ls *.pkg*)" -H "X-API-KEY: $API_KEY" https://pkgs.rustybever.be/api/publish'
|
6
PKGBUILD
6
PKGBUILD
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
|
||||
# Maintainer: Joseph Donofry <joe at joedonofry dot com>
|
||||
|
||||
pkgname=nheko-git
|
||||
pkgname=jjr-nheko
|
||||
pkgver=0.9.1.r7.gbccab87a
|
||||
pkgrel=1
|
||||
pkgdesc="Desktop client for the Matrix protocol"
|
||||
|
@ -10,11 +10,11 @@ arch=("i686" "x86_64" "aarch64")
|
|||
url="https://github.com/Nheko-Reborn/nheko"
|
||||
license=("GPL3")
|
||||
|
||||
depends=("qt5-base" "lmdb" "qt5-graphicaleffects" "qt5-multimedia" "qt5-svg" "qt5-quickcontrols2" "qt5-declarative" "qtkeychain-qt5" "cmark" "openssl" "hicolor-icon-theme" "gstreamer" "gst-plugins-base" "gst-plugins-good" "gst-plugins-bad" "gst-plugin-qmlgl" "libnice" "libolm" "spdlog" "curl" "libevent")
|
||||
depends=("qt5-base" "lmdb" "qt5-graphicaleffects" "qt5-multimedia" "qt5-svg" "qt5-quickcontrols2" "qt5-declarative" "qtkeychain-qt5" "cmark" "openssl" "hicolor-icon-theme" "gstreamer" "gst-plugins-base" "gst-plugins-good" "gst-plugins-bad" "gst-plugin-qmlgl" "libnice" "libolm" "spdlog" "curl" "libevent" "qt5-imageformats" "qt-jdenticon")
|
||||
makedepends=("git" "cmake" "gcc" "fontconfig" "qt5-tools" "nlohmann-json")
|
||||
optdepends=("qt-jdenticon")
|
||||
provides=("nheko")
|
||||
conflicts=("nheko")
|
||||
conflicts=("nheko" "nheko-git")
|
||||
|
||||
source=($pkgname::git+https://github.com/Nheko-Reborn/nheko.git#branch=master)
|
||||
md5sums=("SKIP")
|
||||
|
|
Loading…
Reference in New Issue