Compare commits

..

3 Commits

Author SHA1 Message Date
seeseemelk da55a313f7 Ensure runner is awake before starting 2025-04-25 10:59:44 +02:00
seeseemelk 2ef91180b7 Update template from yay repository 2025-04-23 11:03:49 +02:00
seeseemelk c7795b5098 Initial commit
This repository was based on https://gitea.seeseepuff.be/archlinux/helloworld
2025-04-23 10:56:18 +02:00
3 changed files with 32 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
name: Wake Runner
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Wakeup Runner
run: |
curl https://idlesleep.wolproxy.seeseepuff.be/status
+19
View File
@@ -0,0 +1,19 @@
pkgname=template
pkgver=1
pkgrel=1
pkgdesc="Template"
arch=('any')
url="https://gitea.seeseepuff.be/archlinux/helloworld"
license=('GPL')
source=(helloworld.c)
md5sums=('be272e4d8286b99885f0540bc3345d5f')
build() {
gcc -o helloworld helloworld.c -Wall -Wextra -Werror -pedantic
}
package() {
install -D helloworld "$pkgdir/usr/bin/helloworld"
}
-4
View File
@@ -1,4 +0,0 @@
git remote add aur https://aur.archlinux.org/REPO_NAME.git
git fetch aur
git merge -X theirs --no-edit aur/master