29 lines
642 B
Makefile
29 lines
642 B
Makefile
# $OpenBSD: Makefile,v 1.5 2017/02/24 21:23:38 naddy Exp $
|
|
|
|
COMMENT= POSIX-compliant command line shell
|
|
|
|
DISTNAME= yash-2.44
|
|
RELEASE= 66984
|
|
REVISION= 0
|
|
CATEGORIES= shells
|
|
HOMEPAGE= https://yash.osdn.jp/index.html.en
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_OSDN_JP:=/yash/${RELEASE}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
WANTLIB= c curses intl m
|
|
LIB_DEPENDS= devel/gettext
|
|
|
|
CONFIGURE_STYLE=simple
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" \
|
|
--mandir="${PREFIX}/man"
|
|
CONFIGURE_ENV= CPPFLAGS="-std=c99 -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|