; Installation script for PackIt

(transcript "Installing PackIt...")

(copylib
        (prompt "Install PowerPacker library.")
        (help @copylib-help)
        (source "LIBS/powerpacker.library")
        (dest "libs:")
        (confirm)
)

(set name
        (askdir
                (prompt "Install PackIt where?")
                (help @askdir-help)
                (default "C:")
        )
)

(copyfiles
        (source "PackIt")
        (dest name)
)

(set @default-dest name)

(exit)

