From e665fbc44d1cddf7a97ef0223f4748275ab718a5 Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Sun, 21 Apr 2024 12:58:33 +0200 Subject: [PATCH] initial commit --- APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 APKBUILD 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 +}