blob: b4a4610b2857b8512aa55f4ac9d291965ae3ca08 (
plain) (
blame)
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
33
34
35
|
# Contributor: Síle Ekaterin Liszka <sheila@vulpine.house>
# Maintainer: Síle Ekaterin Liszka <sheila@vulpine.house>
pkgname=edid-decode
pkgver=0_git20240827
pkgrel=0
pkgdesc="Utility for extracting EDID information"
url="https://git.linuxtv.org/edid-decode.git/"
arch="all"
options="!check" # no tests
license="MIT"
depends=""
makedepends="meson"
subpackages="$pkgname-doc"
source="https://distfiles.adelielinux.org/source/$pkgname-$pkgver.tar.gz"
giturl="git://linuxtv.org/edid-decode.git"
reporev="10bc5ee3901ef337f6d255a8d5bee211277543c0"
disturl="https://distfiles.adelielinux.org/source/$pkgname-$pkgver.tar.gz"
build() {
meson setup \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--buildtype=release \
--wrap-mode=nofallback \
build
meson compile -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
sha512sums="1e3d0c149662ed05166838a0e11185505a03b0804a28a0846505e6e8f94adadf073962a6d442ddb408561d57a7da4c6769e4f9a40ea47cb014e919e9cc1603c4 edid-decode-0_git20240827.tar.gz"
|