mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
25 lines
795 B
Text
25 lines
795 B
Text
# Contributor: TBK <alpine@jjtc.eu>
|
|
# Maintainer: TBK <alpine@jjtc.eu>
|
|
pkgname=podman-compose
|
|
pkgver=1.0.3
|
|
pkgrel=1
|
|
pkgdesc="Script to run docker-compose.yml using podman"
|
|
url="https://github.com/containers/podman-compose"
|
|
arch="noarch !s390x !riscv64" # podman
|
|
license="GPL-2.0-or-later"
|
|
options="!check" # Requires running docker env
|
|
depends="podman python3 py3-yaml py3-dotenv"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/containers/podman-compose/archive/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
54ee61e6f9cd946b54eed07285e13bec88bc3d718e55915422b563a4d9e79e4e087cd8040adb16aa2fc4546f536cc5b7e31b3e87295cb7c8281c9db61e6fbc71 podman-compose-1.0.3.tar.gz
|
|
"
|