Created
August 20, 2010 09:20
-
-
Save manveru/539952 to your computer and use it in GitHub Desktop.
PKGBUILD for the google talk plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Michael Fellinger <[email protected]> | |
pkgname=google-talkplugin | |
pkgver=0 | |
pkgrel=1 | |
pkgdesc="Video chat plugin for Gmail, iGoogle, and Orkut" | |
arch=(x86_64) | |
url="http://www.google.com/chat/video" | |
license=('unknown') | |
depends=('libpng12' 'lib32-openssl-compatibility') | |
source=("http://dl.google.com/linux/direct/${pkgname}_current_amd64.deb") | |
md5sums=('d2d48903dbc6ea36cc175898e6d5f7db') #generate with 'makepkg -g' | |
build() { | |
mkdir -p $srcdir/target | |
cd $srcdir/target | |
bsdtar -xf $srcdir/google-talkplugin_current_amd64.deb data.tar.gz | |
bsdtar -xf data.tar.gz | |
rm data.tar.gz | |
} | |
package() { | |
cp -r $srcdir/target/* $pkgdir | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment