add google-weather
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
parent
706165cf2d
commit
af9733bae2
2 changed files with 81 additions and 4 deletions
78
e/google-weather-el/google-weather-el.SlackBuild
Executable file
78
e/google-weather-el/google-weather-el.SlackBuild
Executable file
|
@ -0,0 +1,78 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
# variables
|
||||
VERSION=master_$(date +"%Y.%m.%d_%H.%M")
|
||||
BUILD=1
|
||||
PACKAGER=cyco
|
||||
|
||||
TMP=/tmp
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
PKG=$TMP/$PACKAGER/pkg-$PRGNAM
|
||||
|
||||
ARCH=$(uname -m)
|
||||
|
||||
REPOSITORY=/home/cycojesus/projets/packages/repositories/$PRGNAM
|
||||
PREFIX=/usr
|
||||
|
||||
EMACS=$(basename $(ls /usr/bin/emacs-2*))
|
||||
EMACS_VERSION=$(echo "$EMACS" | grep -o "\-[0-9\.]*\-" | tr -d - | head -n1)
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$PRGNAM-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
cd $TMP
|
||||
if [ ! -e $REPOSITORY ] ; then
|
||||
mkdir -p $(dirname $REPOSITORY)
|
||||
cd $(dirname $REPOSITORY)
|
||||
git clone "git://git.naquadah.org/google-weather-el.git" $PRGNAM
|
||||
fi
|
||||
|
||||
( cd $REPOSITORY
|
||||
git pull
|
||||
)
|
||||
|
||||
mkdir -p $PKG$PREFIX/share/emacs/site-lisp
|
||||
cp -R $REPOSITORY $PKG$PREFIX/share/emacs/site-lisp
|
||||
( cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
||||
rm -fr .git*
|
||||
$EMACS -batch -f batch-byte-compile *.el
|
||||
)
|
||||
|
||||
# correction
|
||||
( cd $PKG
|
||||
chown -R root:root *
|
||||
)
|
||||
|
||||
# embaumement
|
||||
mkdir -p $PKG/install
|
||||
|
||||
cat <<EOF > $PKG/install/slack-desc
|
||||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
$PRGNAM: $PRGNAM (Google Weather for Emacs)
|
||||
$PRGNAM:
|
||||
$PRGNAM: The google-weather Emacs extension allows to run access the Google Weather API
|
||||
$PRGNAM: from Emacs.
|
||||
$PRGNAM:
|
||||
$PRGNAM: It includes org-google-weather, which can be used to add weather forecast in
|
||||
$PRGNAM: your Org agenda.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: http://julien.danjou.info/google-weather-el.html
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
cd $PKG
|
||||
makepkg -l y -c n $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD$PACKAGER.txz
|
|
@ -1,9 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Exec=firefox %u
|
||||
Icon=/usr/share/pixmaps/firefox.png
|
||||
Icon=firefox
|
||||
Type=Application
|
||||
Categories=Application;Network;
|
||||
Categories=Network;
|
||||
Name=Firefox
|
||||
Name[bn]=ফায়ারফক্স
|
||||
Name[eo]=Mozilo Fajrovulpo
|
||||
|
@ -77,5 +76,5 @@ GenericName[xh]=Umkhangeli zincwadi we Web
|
|||
GenericName[zh_CN]=网页浏览器
|
||||
GenericName[zh_TW]=網頁瀏覽器
|
||||
GenericName[zu]=Umcingi we-Web
|
||||
MimeType=text/html
|
||||
MimeType=text/html;
|
||||
X-KDE-StartupNotify=true
|
||||
|
|
Loading…
Reference in a new issue