mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
30 lines
764 B
Makefile
30 lines
764 B
Makefile
PORTNAME= octave-forge-level-set
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 16
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases
|
|
DISTNAME= ${OCTAVE_PKGNAME}-${DISTVERSIONFULL}
|
|
|
|
MAINTAINER= stephen@FreeBSD.org
|
|
COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
|
|
WWW= https://packages.octave.org/
|
|
|
|
LICENSE= GPLv3
|
|
|
|
ALL_TARGET= oct
|
|
USES= compiler:c++0x
|
|
GNU_CONFIGURE= yes
|
|
|
|
# OCTSRC is the name of the directory of the package.
|
|
# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
|
|
OCTSRC= ${OCTAVE_PKGNAME}
|
|
|
|
WRKSRC= ${WRKDIR}/${OCTSRC}/src
|
|
|
|
.include "${.CURDIR}/../../Mk/bsd.octave.mk"
|
|
|
|
post-build:
|
|
${RM} ${WRKSRC}/Makefile ${WRKSRC}/configure
|
|
cd ${WRKDIR} && ${TAR} cfz ${OCTAVE_DISTNAME}.tar.gz ${OCTSRC}
|
|
|
|
.include <bsd.port.mk>
|