distro-build/distro-build-server/info.rkt
Matthew Flatt a2a59d942c pack native-library packages as 'binary instead of 'built
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.
2014-12-05 16:53:28 -07:00

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))