Split zo file handling into its own package.

This commit is contained in:
Sam Tobin-Hochstadt 2014-12-16 22:10:52 -05:00
parent 539c32205e
commit f092262df7
6 changed files with 20 additions and 6 deletions

View File

@ -14,7 +14,7 @@ install:
- echo file://`pwd`/pkgs-catalog/ > catalog-config.txt
- raco pkg config catalogs >> catalog-config.txt
- raco pkg config --set catalogs `cat catalog-config.txt`
- raco pkg install --deps search-auto $PKG $PKG-test
- raco pkg install --deps search-auto $PKG-test
script:
- raco test -p $PKG-test

View File

@ -4,7 +4,10 @@
(define deps '("base"
"scheme-lib"
"rackunit-lib"))
"rackunit-lib"
"zo-lib"))
(define implies '("zo-lib"))
(define pkg-desc "implementation (no documentation) part of \"compiler\"")

View File

@ -1,7 +1,7 @@
#lang scheme/base
(require scheme/match
scheme/contract
scheme/list
#lang racket/base
(require racket/match
racket/contract
racket/list
racket/set)
#| Unresolved issues

11
zo-lib/info.rkt Normal file
View File

@ -0,0 +1,11 @@
#lang info
(define collection 'multi)
(define deps '("base"))
(define pkg-desc "Libraries for handling zo files")
(define pkg-authors '(mflatt))
(define version "1.2")