mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
24 lines
714 B
Text
24 lines
714 B
Text
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=spring-boot-openrc
|
|
pkgver=0.1.1
|
|
pkgrel=0
|
|
pkgdesc="OpenRC runscript for Java applications based on Spring Boot"
|
|
url="https://github.com/jirutka/spring-boot-openrc"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="socat"
|
|
makedepends=""
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/jirutka/$pkgname/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
DESTDIR="$pkgdir" ./install
|
|
}
|
|
|
|
sha512sums="5879fa75816a8d176463d06e1186a773294296664580909e3bcb52256b7dccfd0c0cc7e71060ae23f76e2cc84845d196e4fa56d4488292fd5b0e0925a7e85d1d spring-boot-openrc-0.1.1.tar.gz"
|