initial commit

This commit is contained in:
Sidharth Arya 2026-02-04 16:45:55 +05:30
commit dcb92f53f3

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: Sidharth Arya <code@sidhartharya.com>
pkgname=svcm
pkgver=0.1.0
pkgrel=1
pkgdesc="Lightweight systemd service manager for Wayland"
arch=('x86_64')
url="https://github.com/SidharthArya/svcm"
license=('MIT')
depends=('systemd')
makedepends=('go')
source=("$pkgname-$pkgver.tar.gz::https://github.com/SidharthArya/svcm/archive/v$pkgver.tar.gz")
sha256sums=('SKIP') # Update this with actual sum when releasing
build() {
cd "$pkgname-$pkgver"
go build -o svcm ./src/cmd/svcm
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 svcm "$pkgdir/usr/bin/svcm"
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}