blob: 526728abd602ec8b3387e26fc40640ba53decc3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Contributor: Sam Nystrom <sam@samnystrom.dev>
# Maintainer: Sam Nystrom <sam@samnystrom.dev>
pkgname=ppucciniest-playground
pkgver=0.1.0
pkgrel=0
pkgdesc="An online playground for ppucciniest"
url="https://git.sr.ht/~stonks3141/ppucciniest-playground"
arch="all"
license="AGPL-3.0-or-later"
depends="ppucciniest"
makedepends="go"
options="!check" # no tests
install="$pkgname.pre-install $pkgname.post-deinstall"
subpackages="$pkgname-openrc"
source="$pkgname-$pkgver.tar.gz::https://git.sr.ht/~stonks3141/ppucciniest-playground/archive/$pkgver.tar.gz
$pkgname.initd"
build() {
go build
}
package() {
install -Dm755 ./ppucciniest-playground "$pkgdir"/usr/bin/ppucciniest-playground
install -Dm755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
}
sha512sums="
fde9d38730f42a11900542830fb29afe8adb36b2a5b50dec347e34371dbea1b0ff93d7bcb6939def814a8a597d8bd7467e952d3bf86e0ceb418e564296bae80e ppucciniest-playground-0.1.0.tar.gz
af60e6980ce7e44ae5a716ed19e84c3ddcc7e401b7b9c50e4f4093e69ad91bdfb249cbcca1be0813cf6b5e15a35219ab468326fae13b480272a9cecfd679f7cd ppucciniest-playground.initd
"
|