summaryrefslogtreecommitdiff
path: root/community/pidgin-hotkeys/PKGBUILD
blob: 19440dd172995feddc3e5b327e405703b3cc57e0 (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
# $Id: PKGBUILD 99153 2013-10-25 05:05:18Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: detto <detto-brumm@freenet.de>

pkgname=pidgin-hotkeys
pkgver=0.2.4
pkgrel=3
pkgdesc="A Pidgin plugin that allows you to define global hotkeys."
arch=('i686' 'x86_64' 'mips64el')
url="http://pidgin-hotkeys.sourceforge.net"
license=('GPL')
depends=('pidgin')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
        "pidgin-hotkeys.patch")
md5sums=('553aae7319861af9e8716bfe0ba45c30'
         '0726353af56270164d7af88470722dd0')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  patch -Np0 -i ../pidgin-hotkeys.patch

  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}