updated on Wed Jan 11 12:00:27 UTC 2012
[aur-mirror.git] / okcupid-pidgin / PKGBUILD
blob5fc93dfa0b6f6fab43b271d2745717a2b639f6f2
1 # Matt: Maintainer <matkam gmail>
2 pkgname=okcupid-pidgin
3 pkgver=2.05
4 pkgrel=1
5 pkgdesc="This plugin gets to be the only plugin ever made that will connect OkCupid's online messenger to the Pidgin Instant Messaging program"
6 arch=('i686' 'x86_64')
7 url="http://code.google.com/p/okcupid-pidgin/"
8 license=('GPL v3')
9 depends=('pidgin' 'json-glib')
11 _plugin="libokcupid$-$pkgver.so"
12 if [ "${CARCH}" == x86_64 ]; then
13   _plugin="libokcupid64-$pkgver.so"
15 source=(http://okcupid-pidgin.googlecode.com/files/$_plugin)
17 md5sums=('8a0e79288186833eef2221555943a9c2')
18 if [ "${CARCH}" == x86_64 ]; then
19   md5sums=('40aa057b95260ac4553f677687856d65')
22 package() {
23   cd "$srcdir"
24   install -m755 -d "${pkgdir}/usr/lib/purple-2/" || return 1
25   install -m755 $_plugin "${pkgdir}/usr/lib/purple-2/" || return 1
28 # vim:set ts=2 sw=2 et: