alpineiso: Initial Commit
This commit is contained in:
commit
e06927d45d
1 changed files with 24 additions and 0 deletions
24
PKGBUILD
Normal file
24
PKGBUILD
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Maintainer: LinuxSquare <linuxscripting.sh(at)gmail.com>
|
||||||
|
pkgname=alpineiso
|
||||||
|
pkgver=0.0.2
|
||||||
|
pkgrel=1
|
||||||
|
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=("abab1d1c98c7ed8eb773368064f5be1b7e6dd3d96dcd85b72487a4816c8cc9fd")
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "mk${pkgname}"
|
||||||
|
make DESTDIR="$pkgdir/" install
|
||||||
|
}
|
Loading…
Reference in a new issue