mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-01 22:11:30 +01:00
33 lines
795 B
Plaintext
33 lines
795 B
Plaintext
# 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"
|