Ravenports generated: 09 Jan 2022 18:36
[ravenports.git] / bucket_97 / linenoise
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               linenoise
4 VERSION=                1.0
5 KEYWORDS=               devel
6 VARIANTS=               standard
7 SDESC[standard]=        Minimal replacement for readline
8 HOMEPAGE=               https://github.com/antirez/linenoise
9 CONTACT=                nobody
10
11 DOWNLOAD_GROUPS=        main
12 SITES[main]=            GITHUB/antirez:linenoise:1.0
13 DISTFILE[1]=            generated:main
14 DF_INDEX=               1
15 SPKGS[standard]=        single
16
17 OPTIONS_AVAILABLE=      none
18 OPTIONS_STANDARD=       none
19
20 LICENSE=                BSD2CLAUSE:single
21 LICENSE_FILE=           BSD2CLAUSE:{{WRKSRC}}/LICENSE
22 LICENSE_SCHEME=         solo
23
24 post-extract:
25         ${CP} ${FILESDIR}/BSD_Makefile ${WRKSRC}/Makefile
26
27 [FILE:389:descriptions/desc.single]
28 A minimal, zero-config, BSD licensed, readline replacement used in Redis,
29 MongoDB, and Android.
30
31  * Single and multi line editing mode with the usual key bindings
32    implemented.
33  * History handling.
34  * Completion.
35  * Hints (suggestions at the right of the prompt as you type).
36  * About 1,100 lines of BSD license source code.
37  * Only uses a subset of VT100 escapes (ANSI.SYS compatible).
38
39
40 [FILE:107:distinfo]
41 f5054a4fe120d43d85427cf58af93e56b9bb80389d507a9bec9b75531a340014        14222 antirez-linenoise-1.0.tar.gz
42
43
44 [FILE:61:manifests/plist.single]
45 include/linenoise.h
46 lib/
47  liblinenoise.a
48  liblinenoise_pic.a
49
50
51 [FILE:584:files/BSD_Makefile]
52 LIB_PIC         = liblinenoise_pic.a
53 LIB_STATIC      = liblinenoise.a
54 SRCS            = linenoise.c
55 OBJS            = ${SRCS:.c=.o}
56 SOBJS           = ${SRCS:.c=.So}
57
58 .SUFFIXES:      .o .So
59
60 all: ${LIB_PIC} ${LIB_STATIC}
61
62 .c.o:
63         ${CC} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
64
65 .c.So:
66         ${CC} ${CFLAGS} -fpic -DPIC -c ${.ALLSRC} -o ${.TARGET}
67
68 ${LIB_STATIC}: ${OBJS}
69         ${AR} -cq ${.TARGET} ${.ALLSRC}
70         ranlib ${.TARGET}
71
72 ${LIB_PIC}: ${SOBJS}
73         ${AR} -cq ${.TARGET} ${.ALLSRC}
74         ranlib ${.TARGET}
75
76 install:
77         ${BSD_INSTALL_DATA} linenoise.h ${DESTDIR}${PREFIX}/include/
78         ${BSD_INSTALL_DATA} ${LIB_STATIC} ${LIB_PIC} ${DESTDIR}${PREFIX}/lib/
79