initial commit

This commit is contained in:
LinuxSquare 2024-04-21 12:58:33 +02:00
commit e665fbc44d

22
APKBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintainer: LinuxSquare <linuxsquare@noveria.org>
pkgname=teaiso
pkgver=2.2.0
pkgrel=1
pkgdesc="The ISO generation tool for GNU/Linux."
arch="all"
url="https://gitlab.com/tearch-linux/applications-and-tools/teaiso"
license="GPL3"
depends="xorriso mtools squashfs-tools py3-yaml busybox unzip binutils grub"
makedepends="git make gcc wget"
source="https://gitlab.com/tearch-linux/applications-and-tools/teaiso/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
provides="mkteaiso"
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}