|
root / devel / libtool
libtool Plain Text 36 lines 724 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
#!/bin/bash
# Build script for libtool

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
# GNU Libtool - Generic library support script
# https://www.gnu.org/software/libtool/

[package]
name = "libtool"
version = "2.4.7"
release = 1
description = "Generic library support script"
url = "https://www.gnu.org/software/libtool/"
license = "GPL-2.0"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []

[[source]]
file = "libtool-2.4.7.tar.xz"
urls = ["https://ftp.gnu.org/gnu/libtool/libtool-2.4.7.tar.xz"]
checksum = "4f7f217f057ce655ff22559ad221a0fd8ef84ad1fc5fcb6990cecc333aa1635d"

[build]
parallel = true