info.rkt
#lang setup/infotab

(define mcfly-planet          'neil/mediafile:1:0)
(define name                  "mediafile")
(define mcfly-subtitle        "Media File Metadata Utilities")
(define blurb                 (list name ": " mcfly-subtitle))
(define homepage              "http://www.neilvandyke.org/racket-mediafile/")
(define mcfly-author          "Neil Van Dyke")
(define repositories          '("4.x"))
(define required-core-version "5.3.1")
(define categories            '(misc))
(define can-be-loaded-with    'all)
(define scribblings           '(("doc.scrbl" () (library))))
(define primary-file          "main.rkt")
(define mcfly-start           "mediafile.rkt")
(define mcfly-files           '(defaults
                                 "mediafile-exif.rkt"
                                 "mediafile-misc.rkt"
                                 "mediafile-ogg.rkt"
                                 "mediafile.rkt"
                                 "planet-overeasy.rkt"
                                 ("test-files"
                                  ("exif-org"
                                   "canon-ixus.jpg"
                                   "fujifilm-dx10.jpg"
                                   "fujifilm-finepix40i.jpg"
                                   "fujifilm-mx1700.jpg"
                                   "kodak-dc210.jpg"
                                   "kodak-dc240.jpg"
                                   "nikon-e950.jpg"
                                   "olympus-c960.jpg"
                                   "olympus-d320l.jpg"
                                   "ricoh-rdc5300.jpg"
                                   "sanyo-vpcg250.jpg"
                                   "sanyo-vpcsx550.jpg"
                                   "sony-cybershot.jpg"
                                   "sony-d700.jpg"
                                   "sony-powershota5.jpg")
                                  ("public-domain"
                                   ;; TODO: Decide which files to include, and
                                   ;; possibly edit-out serial numbers.
                                   ))))
(define mcfly-license         "LGPLv3")

(define mcfly-legal
  "Copyright 2012 Neil Van Dyke.  This program is Free Software; you can
redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Software Foundation; either version 3
of the License, or (at your option) any later version.  This program is
distributed in the hope that it will be useful, but without any warranty;
without even the implied warranty of merchantability or fitness for a
particular purpose.  See http://www.gnu.org/licenses/ for details.  For other
licenses and consulting, please contact the author.

Test files from exif.org (used with permission) and/or that are in the public
domain might also be included with this software, and no copyright on them is
claimed on those test files by the author of this software.")