|
root / base / libedit
libedit Plain Text 37 lines 762 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 libedit

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX \
    --disable-static

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
# libedit - BSD editline library
# https://thrysoee.dk/editline/

[package]
name = "libedit"
version = "20240808-3.1"
release = 1
description = "BSD editline and history libraries"
url = "https://thrysoee.dk/editline/"
license = "BSD-3-Clause"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = ["ncurses"]
build = ["ncurses"]

[[source]]
file = "libedit-20240808-3.1.tar.gz"
urls = ["https://thrysoee.dk/editline/libedit-20240808-3.1.tar.gz"]
checksum = "5f0573349d77c4a48967191cdd6634dd7aa5f6398c6a57fe037cc02696d6099f"

[build]
parallel = true