diff options
-rw-r--r-- | testing/udftools/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/udftools/APKBUILD b/testing/udftools/APKBUILD new file mode 100644 index 00000000000..0d77cc7d08c --- /dev/null +++ b/testing/udftools/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=udftools +pkgver=2.1 +pkgrel=0 +arch="all" +url="https://github.com/pali/udftools/" +pkgdesc="Tools for UDF filesystems and DVD/CD-R(W) drives" +license="GPL-2.0-or-later" +makedepends="automake autoconf libtool eudev-dev linux-headers" +source="https://github.com/pali/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz" +subpackages="$pkgname-doc" +options="!check" # No tests + +prepare() { + default_prepare + + ./autogen.sh +} + +build() { + ./configure \ + --prefix=/usr + + make +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="0bdb3f2e0595200dadb771af4f31ba513d0bf6a0fbd30bc3a1f8aba4ab5f487f61635e65dc155926d2f566cb6e2b2f3a57938071616058cf703692d529971a64 udftools-2.1.tar.gz" |