Skip to content

Commit

Permalink
Add indiserver-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBlack85 committed Apr 25, 2023
1 parent 4fbcc7d commit d031379
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions packages/indiserver-ui/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Maintainer: Mattia Procopio (astro.matto) <matto.astro at gmail dot com>
pkgname=indiserver-ui
pkgver=0.1.1
pkgrel=1
pkgdesc="Small GUI to start/stop INDI server"
arch=(x86_64 aarch64)
url=https://github.com/MattBlack85/indiserver-ui
license=(MIT)
depends=(gcc-libs)
makedepends=(rustup)
source=(https://github.com/MattBlack85/indiserver-ui/archive/refs/tags/v${pkgver}.tar.gz)
sha256sums=(339c1a3e67e57d89332cb1ac0778225c2b0bd22f69a45501f9a6a83c6a3e547b)

build() {
cd ${srcdir}/indiserver-ui-${pkgver}
cargo build --release
}

package() {
mkdir -p ${pkgdir}/usr/bin/
mv ${srcdir}/indiserver-ui-${pkgver}/target/release/indiserver-ui ${pkgdir}/usr/bin
}

0 comments on commit d031379

Please sign in to comment.