1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 20:55:19 +03:00

testing/apk-autoupdate: fix linter issues

This commit is contained in:
fossdd 2024-11-14 16:48:21 +01:00 committed by Jakub Jirutka
parent a64397076c
commit d4fe6aef1c

View file

@ -11,18 +11,16 @@ license="MIT"
depends="apk-tools" depends="apk-tools"
makedepends="asciidoctor" makedepends="asciidoctor"
subpackages="$pkgname-doc" subpackages="$pkgname-doc"
source="$pkgname-$_gitrev.tar.gz::https://github.com/jirutka/$pkgname/archive/$_gitrev.tar.gz source="$pkgname-$_gitrev.tar.gz::https://github.com/jirutka/apk-autoupdate/archive/$_gitrev.tar.gz
default-openrc-libexec.patch default-openrc-libexec.patch
" "
builddir="$srcdir/$pkgname-$_gitrev" builddir="$srcdir/$pkgname-$_gitrev"
build() { build() {
cd "$builddir"
make build prefix=/usr make build prefix=/usr
} }
package() { package() {
cd "$builddir"
make install DESTDIR="$pkgdir" prefix=/usr make install DESTDIR="$pkgdir" prefix=/usr
} }