alpineiso: fix package()

This commit is contained in:
LinuxSquare 2024-12-27 23:23:54 +01:00
parent 05030e110c
commit e4934791ea

View file

@ -1,7 +1,7 @@
# Maintainer: LinuxSquare <linuxscripting.sh(at)gmail.com>
pkgname=alpineiso
pkgver=0.0.2
pkgrel=1
pkgrel=2
pkgdesc="A shell cli tool, to create custom Alpine Linux ISO's"
arch=("any")
url="https://codeberg.org/LinuxSquare/alpineiso"
@ -19,6 +19,6 @@ source=("$pkgname-$pkgver.tar.gz::https://codeberg.org/LinuxSquare/alpineiso/arc
sha256sums=('f3da49df87f89cd52f94520fb801cdfaecaf144a4b95ecc1d3de007eca4a6ca9')
package() {
cd "mk${pkgname}"
cd "${pkgname}"
make DESTDIR="$pkgdir/" install
}