a77ac7e3e0
Modules to parse C header files and create XS glue code and documentation out of it. Idealy this allows to "write" an interface to a C library without coding a line. Since no C API is ideal, some adjuments are necessary most of the time. So to use this module you must still be familiar with C and XS programming, but it removes a lot of stupid work and copy & paste from you. Also when the C API changes, most of the time you only have to rerun XSBuilder to get your new Perl API.
21 lines
438 B
Makefile
21 lines
438 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/07/22 15:58:36 simon Exp $
|
|
|
|
COMMENT= automatic Perl XS glue code generation
|
|
|
|
MODULES= cpan
|
|
DISTNAME= ExtUtils-XSBuilder-0.28
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= Simon Bertrang <simon@openbsd.org>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= ::devel/p5-Parse-RecDescent \
|
|
::devel/p5-Tie-IxHash
|
|
|
|
.include <bsd.port.mk>
|