mirror of https://github.com/fspc/dswim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
649 B
32 lines
649 B
|
|
all:
|
|
|
|
install:
|
|
install -d /var/lib/dpkg
|
|
install -d /usr/bin
|
|
cp -a swim /usr/bin/swim
|
|
install -d /usr/share/perl5/SWIM
|
|
cp -fa SWIM/*pm /usr/share/perl5/SWIM
|
|
install -d /usr/lib/dswim
|
|
cp -fa bin/*swim /usr/lib/dswim
|
|
install -d /etc/dswim
|
|
cp -fa swimrc /etc/dswim
|
|
install -d /usr/share/man/man8
|
|
cp -fa swim.8 /usr/share/man/man8
|
|
install -d /usr/share/man/man5
|
|
cp -fa swimrc.5 /usr/share/man/man5
|
|
|
|
|
|
remove:
|
|
rm /usr/share/perl5/SWIM/*
|
|
rmdir /usr/share/perl5/SWIM
|
|
rm /usr/bin/swim
|
|
rm /usr/lib/dswim/*swim
|
|
rmdir /usr/lib/dswim
|
|
rm /etc/dswim/swimrc
|
|
rmdir /etc/dswim
|
|
rm /usr/share/man/man8/swim.8
|
|
rm /usr/share/man/man5/swimrc.5
|
|
|
|
|
|
|
|
|