31 lines
635 B
Makefile
31 lines
635 B
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2009/10/13 20:10:49 landry Exp $
|
||
|
|
||
|
COMMENT = python package to parse and build CSS
|
||
|
|
||
|
CATEGORIES = textproc
|
||
|
|
||
|
VERSION = 0.9.6
|
||
|
DISTNAME = cssutils-${VERSION}
|
||
|
PKGNAME = py-${DISTNAME}
|
||
|
MASTER_SITES = http://cssutils.googlecode.com/files/
|
||
|
|
||
|
EXTRACT_SUFX = .zip
|
||
|
|
||
|
# GPLv3
|
||
|
PERMIT_PACKAGE_CDROM= Yes
|
||
|
PERMIT_PACKAGE_FTP= Yes
|
||
|
PERMIT_DISTFILES_CDROM= Yes
|
||
|
PERMIT_DISTFILES_FTP= Yes
|
||
|
|
||
|
HOMEPAGE = http://cthedot.de/cssutils/
|
||
|
|
||
|
MODULES = lang/python
|
||
|
SUBST_VARS += VERSION
|
||
|
|
||
|
MODPY_SETUPTOOLS = Yes
|
||
|
|
||
|
post-install:
|
||
|
chmod 444 ${PREFIX}/lib/python2.5/site-packages/${DISTNAME}-py${MODPY_VERSION}.egg-info/*
|
||
|
|
||
|
.include <bsd.port.mk>
|