ef747cfccc
The Perl Shell is a shell that combines the interactive nature of a Unix shell with the power of Perl. The goal is to have a full featured shell that behaves as expected for normal shell activity. From Jasper Lievisse Adriaanse <jasper@nedbsd.nl>
35 lines
798 B
Makefile
35 lines
798 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/10/23 10:29:21 alek Exp $
|
|
|
|
COMMENT= "Perl shell"
|
|
|
|
DISTNAME= psh-1.8
|
|
PKGNAME= ${DISTNAME:S/p/perl/}
|
|
CATEGORIES= shells
|
|
|
|
HOMEPAGE= http://www.focusresearch.com/gregor/psh/
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@nedbsd.nl>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
RUN_DEPENDS= ::devel/p5-Term-ReadLine-Gnu \
|
|
::devel/p5-BSD-Resource
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/psh/themes
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/psh/complete
|
|
${INSTALL_DATA} ${WRKSRC}/share/themes/* ${PREFIX}/share/psh/themes
|
|
${INSTALL_DATA} ${WRKSRC}/share/complete/* ${PREFIX}/share/psh/complete
|
|
|
|
.include <bsd.port.mk>
|