diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-08-08 06:01:28 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-08-08 06:01:28 +0000 |
commit | 0d4b941f743cb10480fa6fca05455ba935bfa0b1 (patch) | |
tree | ab5a23740c55b3baa3f82b421a871ae718bc78fb | |
parent | fe5b42e19319ac583159a54a45bcdc5dd0c8f810 (diff) | |
download | freebsd-ports-0d4b941f743cb10480fa6fca05455ba935bfa0b1.zip |
- Add new port: misc/R-cran-mime
Guesses the MIME type from a filename extension using the data
derived from /etc/mime.types in UNIX-type systems.
WWW: https://cran.r-project.org/web/packages/mime/
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/R-cran-mime/Makefile | 16 | ||||
-rw-r--r-- | misc/R-cran-mime/distinfo | 2 | ||||
-rw-r--r-- | misc/R-cran-mime/pkg-descr | 4 |
4 files changed, 23 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 5bf0134c6d22..4d38bf86f1b0 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -3,6 +3,7 @@ COMMENT = Miscellaneous utilities + SUBDIR += R-cran-mime SUBDIR += achievo SUBDIR += aclgen SUBDIR += amanda-client diff --git a/misc/R-cran-mime/Makefile b/misc/R-cran-mime/Makefile new file mode 100644 index 000000000000..6c5e84564cdc --- /dev/null +++ b/misc/R-cran-mime/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= mime +PORTVERSION= 0.3 +CATEGORIES= misc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Map Filenames to MIME Types + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/misc/R-cran-mime/distinfo b/misc/R-cran-mime/distinfo new file mode 100644 index 000000000000..e0059ba71972 --- /dev/null +++ b/misc/R-cran-mime/distinfo @@ -0,0 +1,2 @@ +SHA256 (mime_0.3.tar.gz) = b36faa83b5cddfbf53283322dbc1a42f2d306f04b7be0679591b2a86d04f2ec5 +SIZE (mime_0.3.tar.gz) = 12289 diff --git a/misc/R-cran-mime/pkg-descr b/misc/R-cran-mime/pkg-descr new file mode 100644 index 000000000000..c1010b587f6d --- /dev/null +++ b/misc/R-cran-mime/pkg-descr @@ -0,0 +1,4 @@ +Guesses the MIME type from a filename extension using the data +derived from /etc/mime.types in UNIX-type systems. + +WWW: https://cran.r-project.org/web/packages/mime/ |