updated on Tue Jan 24 12:00:22 UTC 2012
[aur-mirror.git] / clx / clx.install
blob9df2d5559801d45e28ad92e03a5e5db1b6dadefc
1 # arg 1:  the new package version
3 post_install() {
4     cat << EOM
6     To load this library, load asdf and then place the following lines
7     in your rc file:
9     (pushnew #p"/usr/share/common-lisp/systems/" asdf:*central-registry* :test #'equal)
10     (asdf:operate 'asdf:load-op 'clx)
12     Do note that if you install this package with one lisp and want to 
13     use it with another, you'll need to reinstall with that in mind.
14 EOM
16     install-info /usr/share/info/clx.info /usr/share/info/dir
19 post_upgrade() {
20     post_install $1
23 pre_remove() {
24     install-info --remove /usr/share/info/clx.info /usr/share/info/dir
25     rm -f /usr/share/common-lisp/cl-ppcre/{*.fas,*.fasl,*.lib}
28 op=$1
29 shift
31 $op $*
33 # End of file