Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
This commit is contained in:
parent
2bb70d5fd7
commit
c7cee7ad71
2 changed files with 52 additions and 0 deletions
17
.forgejo/workflows/build-alpine.yaml
Normal file
17
.forgejo/workflows/build-alpine.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: PostmarketOS build
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: Pmbootstrap
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Make temp package dir
|
||||
run: mkdir -p /data/pmaports/temp/pipetap
|
||||
- name: Copy APKBUILD to this dir
|
||||
run: cp ${{ github.workspace }}/misc/APKBUILD /data/pmaports/temp/pipetap
|
||||
- name: Run PostmarketOS build
|
||||
run: pmbootstrap build --force pipetap --src ${{ github.workspace }} --arch aarch64
|
35
misc/APKBUILD
Normal file
35
misc/APKBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
pkgname=pipetap
|
||||
pkgver=0.1.0
|
||||
pkgrel=0
|
||||
pkgdesc="Gtk4 + Vala PipeWire camera control overlay."
|
||||
url="https://git.nekocwd.duckdns.org/NekoCWD/pipetap"
|
||||
arch="all"
|
||||
license="GPL-3.0-only"
|
||||
subpackages="$pkgname-lang"
|
||||
makedepends="
|
||||
cmake
|
||||
desktop-file-utils
|
||||
gettext-dev
|
||||
libadwaita-dev
|
||||
wireplumber-dev
|
||||
meson
|
||||
vala
|
||||
"
|
||||
source=""
|
||||
builddir="$srcdir/g4music-v$pkgver"
|
||||
|
||||
build() {
|
||||
abuild-meson \
|
||||
. output
|
||||
meson compile -C output
|
||||
}
|
||||
|
||||
check() {
|
||||
meson test --print-errorlogs -C output
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
||||
}
|
||||
|
||||
sha512sums=""
|
Loading…
Add table
Add a link
Reference in a new issue