
Otherwise, a distribution and/or installation ends up with two copies of the native library. This change is needed because http://pkgs.racket-lang.org/ now has a "source" variant of each native-library package. More generally, use the `distribution-preference` value in a package's "info.rkt", where the default is 'binary for a native-library package because it has only "info.rkt" sources.
18 lines
442 B
Racket
18 lines
442 B
Racket
#lang info
|
|
|
|
(define collection "distro-build")
|
|
|
|
(define deps '(["base" #:version "6.1.1.6"]
|
|
"distro-build-client"
|
|
"web-server-lib"
|
|
"ds-store-lib"
|
|
"net-lib"
|
|
"scribble-html-lib"
|
|
"plt-web-lib"
|
|
"remote-shell-lib"))
|
|
(define build-deps '("at-exp-lib"))
|
|
|
|
(define pkg-desc "server-side part of \"distro-build\"")
|
|
|
|
(define pkg-authors '(mflatt))
|