forked from ports/contrib
23 lines
906 B
Plaintext
23 lines
906 B
Plaintext
# Description: P2P VoIP software which supports end-to-end encryption.
|
|
# URL: http://www.skype.com/products/skype/linux/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
# Depends on: qt4 alsa-lib libsigc++ xorg-libxscrnsaver
|
|
|
|
name=skype
|
|
version=2.0.0.72
|
|
release=1
|
|
source=(http://download.skype.com/linux/skype-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd skype-$version
|
|
install -d $PKG/usr/share/skype
|
|
install -D -m 0755 skype $PKG/usr/bin/skype
|
|
cp -R sounds $PKG/usr/share/skype
|
|
install -D -m 0644 icons/SkypeBlue_16x16.png $PKG/usr/share/icons/hicolor/16x16/apps/skype.png
|
|
install -D -m 0644 icons/SkypeBlue_32x32.png $PKG/usr/share/icons/hicolor/32x32/apps/skype.png
|
|
install -D -m 0644 icons/SkypeBlue_48x48.png $PKG/usr/share/icons/hicolor/48x48/apps/skype.png
|
|
install -D -m 0644 skype.desktop $PKG/usr/share/applications/skype.desktop
|
|
}
|
|
|