Cosmetics.
[breezed.git] / install.sh
index d2b1ea8..3c2e624 100755 (executable)
@@ -3,7 +3,7 @@
 #  breezed is a fan speed control daemon for Linux computers.
 #
 #  Copyright (c) 2008 Francois Fleuret
-#  Written by Francois Fleuret <francois.fleuret@idiap.ch>
+#  Written by Francois Fleuret <francois@fleuret.org>
 #
 #  This file is part of breezed.
 #
@@ -19,6 +19,8 @@
 #  You should have received a copy of the GNU General Public License
 #  along with breezed.  If not, see <http://www.gnu.org/licenses/>.
 
+PM_SLEEPD_DIR="/usr/lib/pm-utils/sleep.d/"
+
 make -k
 
 if [[ ! -a "/etc/breezed.conf" ]]; then
@@ -29,7 +31,15 @@ fi
 
 cp ./breezed /usr/local/bin/
 cp ./breezed.sh /etc/init.d/
-cp ./breezed-resume.sh /etc/acpi/resume.d/99-breezed.sh
+
+if [[ -d "${PM_SLEEPD_DIR}" ]]; then
+    cp ./breezed-pm-utils.sh ${PM_SLEEPD_DIR}50breezed
+else
+    echo "I can not find ${PM_SLEEPD_DIR}"
+    echo "On Debian, you should install pm-utils"
+fi
+
+cp ./breezed.1 /usr/share/man/man1/
 
 update-rc.d breezed.sh defaults