
; Install script for PlaySID.library

(set old_level @user-level)
(set @default-dest "")

(set psidlib "libs/PlaySID.library")

;=============================================================================
; English strings

(set #copying-psidlib		"Copying PlaySID.library to LIBS:...")

(set #install-msg
(cat "\n\nPlaySID library installation script.\n"
     "This script installs PlaySID.library\n"
     "on your Amiga.\n\n"
     " 1994 Per Hkan Sundell and Ron Birk\n"
     "All rights reserved."
))

;=============================================================================

(message #install-msg)

(copylib
	(prompt "\n" #copying-psidlib)
	(help @copylib-help)
	(source psidlib)
	(dest "LIBS:")
	(confirm)
)

