-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
462 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Pydicom is a pure Python package for working with DICOM files such as medical | ||
images, reports, and radiotherapy objects. | ||
|
||
Pydicom makes it easy to read these complex files into natural pythonic | ||
structures for easy manipulation. Modified datasets can be written again to | ||
DICOM format files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# $NetBSD$ | ||
|
||
DISTNAME= pydicom-1.2.0 | ||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME} | ||
CATEGORIES= graphics python | ||
MASTER_SITES= ${MASTER_SITE_GITHUB:=pydicom/} | ||
GITHUB_PROJECT= pydicom | ||
GITHUB_TAG= v${PKGVERSION_NOREV} | ||
|
||
MAINTAINER= eborisch@gmail.com | ||
HOMEPAGE= https://github.com/pydicom/pydicom/ | ||
COMMENT= Pure python package for working with DICOM files | ||
LICENSE= modified-bsd AND mit | ||
|
||
USE_LANGUAGES= # none | ||
|
||
DOCDIR= share/doc/${PKGBASE} | ||
PLIST_SUBST= DOCDIR=${DOCDIR:Q} | ||
INSTALLATION_DIRS+= ${DOCDIR} | ||
|
||
post-install: | ||
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DESTDIR}${PREFIX}/${DOCDIR} | ||
${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/${DOCDIR} | ||
|
||
.include "../../lang/python/egg.mk" | ||
.include "../../mk/bsd.pkg.mk" |
Oops, something went wrong.