mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/amsn: Initial import
This commit is contained in:
parent
a09624e565
commit
ba8516468d
5 changed files with 126 additions and 0 deletions
18
network/amsn/README
Normal file
18
network/amsn/README
Normal file
|
@ -0,0 +1,18 @@
|
|||
aMSN is a free open source MSN Messenger clone, with features such as:
|
||||
|
||||
* Display pictures
|
||||
* Custom emoticons
|
||||
* Multi-language support (around 40 languages currently supported)
|
||||
* Webcam support
|
||||
* Sign in to more than one account at once
|
||||
* Full-speed File transfers
|
||||
* Group support
|
||||
* Normal, and animated emoticons with sounds
|
||||
* Chat logs
|
||||
* Timestamping
|
||||
* Event alarms
|
||||
* Conferencing support
|
||||
* Tabbed chat windows
|
||||
|
||||
aMSN depends on TCL/TK 8.4. It also requires TLS 1.5 in order to work.
|
||||
|
83
network/amsn/amsn.SlackBuild
Normal file
83
network/amsn/amsn.SlackBuild
Normal file
|
@ -0,0 +1,83 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for aMSN
|
||||
# Written by Marc-Andre Moreau <aghaster@hotmail.com>
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=amsn
|
||||
VERSION=0.96
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
cd $TMP || exit 1
|
||||
tar -jxvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
|
||||
# aMSN's Makefile does not use the DESTDIR variable
|
||||
# Instead, it uses dstdir and slnkdir.
|
||||
|
||||
# Tweak the Makefile a little bit in order to get our symlinks to point
|
||||
# to a different path than where the files are being copied.
|
||||
sed -i 's|ln -sf $(dstdir)/$(PACKAGE)|ln -sf $(DESTDIR)/$(PACKAGE)|' Makefile \
|
||||
|| exit 1
|
||||
|
||||
make install dstdir=$PKG/usr/share slnkdir=$PKG/usr/bin DESTDIR=/usr/share \
|
||||
|| exit 1
|
||||
|
||||
# For some reason, two amsn.desktop files are created during the
|
||||
# installation setup. Also, the icon path given in the amsn.desktop
|
||||
# file is a relative path, so we change it to a full path.
|
||||
sed -i 's|Icon=msn.png|Icon=/usr/share/icons/hicolor/48x48/msn.png|' \
|
||||
$PKG/usr/share/applications/amsn.desktop || exit 1
|
||||
|
||||
sed -i 's|Icon=msn.png|Icon=/usr/share/icons/hicolor/48x48/msn.png|' \
|
||||
$PKG/usr/share/amsn/amsn.desktop || exit 1
|
||||
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
cp -a AGREEMENT CREDITS FAQ GNUGPL HELP INSTALL README TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
network/amsn/amsn.info
Normal file
8
network/amsn/amsn.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="amsn"
|
||||
VERSION="0.96"
|
||||
HOMEPAGE="http://amsn-project.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/amsn/amsn-0.96.tar.bz2"
|
||||
MD5SUM="3df6b0d34ef1997a47c0b8af29b2547a"
|
||||
MAINTAINER="Marc-Andre Moreau"
|
||||
EMAIL="aghaster@hotmail.com"
|
||||
APPROVED="alien"
|
5
network/amsn/doinst.sh
Normal file
5
network/amsn/doinst.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
12
network/amsn/slack-desc
Normal file
12
network/amsn/slack-desc
Normal file
|
@ -0,0 +1,12 @@
|
|||
amsn: aMSN - Alvaro's Messenger
|
||||
amsn:
|
||||
amsn: aMSN is a clone of Microsoft's MSN Messenger, written in TCL/TK.
|
||||
amsn:
|
||||
amsn: http://amsn-project.net/
|
||||
amsn:
|
||||
amsn:
|
||||
amsn:
|
||||
amsn:
|
||||
amsn:
|
||||
amsn:
|
||||
|
Loading…
Reference in a new issue