1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Lowlevel cpu routines to get basic properties of the cpu platform, like

endianness and architecture.

WWW:	http://github.com/vincenthz/hs-cpu

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 19:23:57 +00:00
parent ad40840f03
commit f4ff1b95c9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298141
4 changed files with 27 additions and 0 deletions

View File

@ -68,6 +68,7 @@ convertible-text_port= devel/hs-convertible-text
cookie_port= www/hs-cookie
cpphs_port= devel/hs-cpphs # executable
cprng-aes_port= security/hs-cprng-aes
cpu_port= sysutils/hs-cpu
criterion_port= benchmarks/hs-criterion
Crypto_port= security/hs-Crypto
crypto-api_port= security/hs-crypto-api

20
sysutils/hs-cpu/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-cpu
# Date created: May 9, 2012
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= cpu
PORTVERSION= 0.1.0
CATEGORIES= sysutils haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Cpu information and properties helpers
LICENSE= BSD
CABAL_SETUP= Setup.hs
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

2
sysutils/hs-cpu/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (cabal/cpu-0.1.0.tar.gz) = cf634b4a0166cc5083473b4f81fe583f22d3c57b91f6eb1fc0124e3c360b1a08
SIZE (cabal/cpu-0.1.0.tar.gz) = 4166

View File

@ -0,0 +1,4 @@
Lowlevel cpu routines to get basic properties of the cpu platform, like
endianness and architecture.
WWW: http://github.com/vincenthz/hs-cpu