|
root / devel / automake
automake Plain Text 37 lines 789 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 automake

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake
gmake install DESTDIR="$PKGDIR"
# GNU Automake - Makefile generator
# https://www.gnu.org/software/automake/

[package]
name = "automake"
version = "1.17"
release = 1
description = "Automatic Makefile generator"
url = "https://www.gnu.org/software/automake/"
license = "GPL-2.0"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

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

[[source]]
file = "automake-1.17.tar.xz"
urls = ["https://ftp.gnu.org/gnu/automake/automake-1.17.tar.xz"]
checksum = "8920c1fc411e13b90bf704ef9db6f29d540e76d232cb3b2c9f4dc4cc599bd990"

[build]
parallel = false