• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisiónd9928d3ebad96c4b241871149012d8570576e352 (tree)
Tiempo2012-09-08 21:02:04
Autormatsuand <matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Added xfce4-notifyd.

Cambiar Resumen

Diferencia incremental

--- /dev/null
+++ b/BLFS/xfce4-notifyd.sh
@@ -0,0 +1,48 @@
1+#!/bin/sh
2+
3+VER=0.2.2
4+TARGET=xfce4-notifyd-$VER
5+TARGETBALL=$TARGET.tar.bz2
6+TARGETDIR=$TARGET
7+
8+. ./_blfsset.sh
9+
10+echo Check Required...
11+./_checkRequired.sh libxfce4ui || exit 1
12+if test "$1" == "check"; then
13+ exit 0
14+fi
15+
16+#echo Check Options...
17+#. ./_checkOptions.sh gtk-doc
18+
19+cd $SRC
20+
21+echo $TARGET
22+
23+echo \ \ Removing old directory...
24+rm -fr $TARGETDIR
25+
26+. $WRK/_extract.sh
27+
28+cd $TARGETDIR
29+
30+echo \ \ Configuring...
31+./configure --prefix=/usr \
32+ 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
33+
34+echo \ \ Making...
35+make \
36+ 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
37+
38+echo \ \ Installing...
39+paco -p $TARGET "make install" \
40+ 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
41+
42+notify-send -i info Information "Hi ${USER}, This is a Test"
43+
44+echo -n \ \ Pacoing:\ && paco $TARGET || echo none
45+
46+echo \ \ Removing directory...
47+cd .. && rm -fr $TARGETDIR
48+