pkgsrc/devel/guile-lib/Makefile
wiz 7eefed1080 Initial import of guile-lib, provided by Greg Troxel via pkgsrc-wip.
Guile-Lib is intended as an accumulation place for pure-scheme Guile
modules, allowing for people to cooperate integrating their generic
Guile modules into a coherent library. Think "a down-scaled,
limited-scope CPAN for Guile".

Also, it can be seen as a code staging area for Guile; the Guile
developers could decide to integrate some of the code into
guile-core. An example for a possible candidate is SRFI-35.

    * SSAX, S-Exp-based XML parsing/query/conversion
    * HTMLPrag, a permissive ("pragmatic") HTML parser
    * Texinfo processing, enabling literate programming
    * Unit testing framework ala JUnit
    * Logging system
    * String routines (wrapping, completion, soundex algorithm)
    * OS process chains (think "shell pipes in scheme")
    * An LALR parser
    * ANSI escape sequence text coloring
    * Structured text (plain, texinfo, html)
    * SRFI-35 (conditions)
2004-12-03 16:50:22 +00:00

30 lines
816 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2004/12/03 16:50:22 wiz Exp $
DISTNAME= guile-lib-0.1.2
CATEGORIES= devel
MASTER_SITES= http://download.gna.org/guile-lib/
MAINTAINER= gdt@ir.bbn.com
HOMEPAGE= http://home.gna.org/guile-lib/
COMMENT= Library functions for Guile, implemented in Scheme
# This package may not be built from the src directory (arch configure
# rules). The build directory must be created by hand; see the
# pre-configure target.
HAS_CONFIGURE= yes
CONFIGURE_DIRS= ${WRKSRC}/build
BUILD_DIRS= ${WRKSRC}/build
CONFIGURE_SCRIPT= ../src/configure
CONFIGURE_ARGS= --prefix=${PREFIX}
USE_BUILDLINK3= YES
USE_GNU_TOOLS= make
USE_MAKEINFO= yes
INFO_FILES= guile-library.info
TEST_TARGET= test
pre-configure:
${MKDIR} ${WRKSRC}/build
.include "../../lang/guile/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"