24 lines
609 B
Bash
24 lines
609 B
Bash
# Maintainer: LinuxSquare <linuxscripting.sh(at)gmail.com>
|
|
pkgname=alpineiso
|
|
pkgver=0.0.2
|
|
pkgrel=2
|
|
pkgdesc="A shell cli tool, to create custom Alpine Linux ISO's"
|
|
arch=("any")
|
|
url="https://codeberg.org/LinuxSquare/alpineiso"
|
|
license=('AGPL-3')
|
|
depends=(
|
|
"xorriso"
|
|
"mtools"
|
|
"squashfs-tools"
|
|
"busybox"
|
|
"unzip"
|
|
"binutils"
|
|
"grub"
|
|
)
|
|
source=("$pkgname-$pkgver.tar.gz::https://codeberg.org/LinuxSquare/alpineiso/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('f3da49df87f89cd52f94520fb801cdfaecaf144a4b95ecc1d3de007eca4a6ca9')
|
|
|
|
package() {
|
|
cd "${pkgname}"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|