# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= linenoise VERSION= 1.0 KEYWORDS= devel VARIANTS= standard SDESC[standard]= Minimal replacement for readline HOMEPAGE= https://github.com/antirez/linenoise CONTACT= nobody DOWNLOAD_GROUPS= main SITES[main]= GITHUB/antirez:linenoise:1.0 DISTFILE[1]= generated:main DF_INDEX= 1 SPKGS[standard]= single OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none LICENSE= BSD2CLAUSE:single LICENSE_FILE= BSD2CLAUSE:{{WRKSRC}}/LICENSE LICENSE_SCHEME= solo post-extract: ${CP} ${FILESDIR}/BSD_Makefile ${WRKSRC}/Makefile [FILE:389:descriptions/desc.single] A minimal, zero-config, BSD licensed, readline replacement used in Redis, MongoDB, and Android. * Single and multi line editing mode with the usual key bindings implemented. * History handling. * Completion. * Hints (suggestions at the right of the prompt as you type). * About 1,100 lines of BSD license source code. * Only uses a subset of VT100 escapes (ANSI.SYS compatible). [FILE:107:distinfo] f5054a4fe120d43d85427cf58af93e56b9bb80389d507a9bec9b75531a340014 14222 antirez-linenoise-1.0.tar.gz [FILE:61:manifests/plist.single] include/linenoise.h lib/ liblinenoise.a liblinenoise_pic.a [FILE:584:files/BSD_Makefile] LIB_PIC = liblinenoise_pic.a LIB_STATIC = liblinenoise.a SRCS = linenoise.c OBJS = ${SRCS:.c=.o} SOBJS = ${SRCS:.c=.So} .SUFFIXES: .o .So all: ${LIB_PIC} ${LIB_STATIC} .c.o: ${CC} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET} .c.So: ${CC} ${CFLAGS} -fpic -DPIC -c ${.ALLSRC} -o ${.TARGET} ${LIB_STATIC}: ${OBJS} ${AR} -cq ${.TARGET} ${.ALLSRC} ranlib ${.TARGET} ${LIB_PIC}: ${SOBJS} ${AR} -cq ${.TARGET} ${.ALLSRC} ranlib ${.TARGET} install: ${BSD_INSTALL_DATA} linenoise.h ${DESTDIR}${PREFIX}/include/ ${BSD_INSTALL_DATA} ${LIB_STATIC} ${LIB_PIC} ${DESTDIR}${PREFIX}/lib/