commit e665fbc44d1cddf7a97ef0223f4748275ab718a5 Author: LinuxSquare Date: Sun Apr 21 12:58:33 2024 +0200 initial commit diff --git a/APKBUILD b/APKBUILD new file mode 100644 index 0000000..a2243e0 --- /dev/null +++ b/APKBUILD @@ -0,0 +1,22 @@ +# Maintainer: LinuxSquare +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 +}