|
root / base / util-macros
util-macros Plain Text 39 lines 920 B
 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
36
37
38
#!/bin/sh
set -e
cd "$SRCDIR"

export PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH"

./configure \
    --prefix="$PREFIX" \
    --build="$BUILD_TRIPLE" \
    --host="$BUILD_TRIPLE" \
    --sysconfdir="$SYSCONFDIR"

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
# util-macros - X.Org autoconf macros
# https://gitlab.freedesktop.org/xorg/util/macros

[package]
name = "util-macros"
version = "1.20.2"
release = 1
description = "Autoconf macros used by the X.Org build system"
url = "https://xorg.freedesktop.org/releases/individual/util/"
license = "MIT"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []

[[source]]
file = "util-macros-1.20.2.tar.xz"
urls = ["https://xorg.freedesktop.org/releases/individual/util/util-macros-1.20.2.tar.xz"]
checksum = "9ac269eba24f672d7d7b3574e4be5f333d13f04a7712303b1821b2a51ac82e8e"

[build]
parallel = true