mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
23 lines
703 B
Bash
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"
|
|
}
|