|
root / devel / autoconf
autoconf Plain Text 37 lines 791 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
#!/bin/bash
# Build script for autoconf

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake
gmake install DESTDIR="$PKGDIR"
# GNU Autoconf - Automatic configure script builder
# https://www.gnu.org/software/autoconf/

[package]
name = "autoconf"
version = "2.72"
release = 1
description = "Automatic configure script builder"
url = "https://www.gnu.org/software/autoconf/"
license = "GPL-3.0"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []
# Note: Requires perl at runtime, but perl is a system dependency

[[source]]
file = "autoconf-2.72.tar.xz"
urls = ["https://ftp.gnu.org/gnu/autoconf/autoconf-2.72.tar.xz"]
checksum = "ba885c1319578d6c94d46e9b0dceb4014caafe2490e437a0dbca3f270a223f5a"

[build]
parallel = false