Files
BiogasControllerApp/PKGBUILD
2025-05-22 11:23:03 +02:00

23 lines
703 B
Bash

# Maintainer: Janis Hutz <development@janishutz.com>
pkgname=biogascontrollerapp
pkgver=3.0
pkgrel=1
pkgdesc="Utility Software to control the Biogas plant of ENATECH at KSWO"
arch=('x86_64')
url="https://github.com/janishutz/BiogasControllerApp"
license=('GPL-3.0-or-later')
depends=('python')
makedepends=('pyinstaller' 'python-setuptools')
source=("biogascontrollerapp/biogascontrollerapp.py")
sha256sums=('SKIP') # Replace with actual checksum for production use
# TODO: Update source to be from upstream so only PKGBUILD can be distributed
build() {
cd "$srcdir"
pyinstaller --onefile biogascontrollerapp.py
}
package() {
install -Dm755 "$srcdir/dist/myscript" "$pkgdir/usr/bin/myscript"
}