blob: 0d77cc7d08ce94fb31ee96b2ef1481a68f929df0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
|