blob: 1bd0ccd5abc7db1b65c598cbc0ccff429e9f9f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $Id: PKGBUILD 94425 2013-07-24 14:45:02Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
pkgname=pidgin-lwqq
pkgver=0.1f.20130724
_commit=ba985662bffa0fe5ec36f276f13fc3d870b11ecf
pkgrel=1
pkgdesc="A pidgin plugin based on lwqq, a excellent safe useful library for webqq protocol"
arch=('i686' 'x86_64')
url="https://github.com/xiehuc/pidgin-lwqq"
license=('GPL3')
depends=('libpurple' 'curl' 'libev' 'hicolor-icon-theme' 'gtk-update-icon-cache')
optdepends=('pidgin: Multi-protocol instant messaging client'
'telepathy-haze: Empathy plugin support')
makedepends=('git' 'cmake')
install=$pkgname.install
source=("git://github.com/xiehuc/pidgin-lwqq.git#commit=$_commit"
"git://github.com/xiehuc/lwqq.git")
prepare() {
cd "$srcdir/$pkgname"
git submodule init
git config submodule."liblwqq".url "$srcdir/lwqq"
git submodule update
}
build() {
cd "${srcdir}/$pkgname"
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="${pkgdir}" install
}
sha512sums=('SKIP'
'SKIP')
|