fb1635291e
Floppy Disc Controller (FDC) as used in Amstrad computers such as the PCW, CPC and Spectrum +3. At present it is not a ``full'' 765; features not used in the PCW BIOS (such as: DMA, multisector reads/writes, multitrack mode) are either left unimplemented or incomplete. WWW: http://www.seasip.demon.co.uk/Unix/LibDsk/ ok naddy@
31 lines
743 B
Makefile
31 lines
743 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/12/16 14:28:54 grange Exp $
|
|
|
|
COMMENT= "library for the floppy controller emulation"
|
|
|
|
DISTNAME= lib765-0.3.0
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://www.seasip.demon.co.uk/Unix/LibDsk/
|
|
|
|
MAINTAINER= Alexander Yurchenko <grange@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.seasip.demon.co.uk/Unix/LibDsk/
|
|
|
|
LIB_DEPENDS= dsk.2::devel/libdsk
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/lib765
|
|
${INSTALL_DATA} ${WRKSRC}/doc/765.txt ${PREFIX}/share/doc/lib765
|
|
|
|
.include <bsd.port.mk>
|