diff options
author | root <root@rshg054.dnsready.net> | 2012-12-02 01:27:08 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-12-02 01:27:08 -0800 |
commit | 98ba4ae196183c2d9b1cc2d61cf1ee82302863e3 (patch) | |
tree | 77f7f23c59f50a1901586a8c3818f53c6a67837b /community/pidgin-hotkeys/PKGBUILD | |
parent | c31ace4c6175db330d7e4aac1e7388fe5ca5d4f3 (diff) |
Sun Dec 2 01:26:32 PST 2012
Diffstat (limited to 'community/pidgin-hotkeys/PKGBUILD')
-rw-r--r-- | community/pidgin-hotkeys/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/pidgin-hotkeys/PKGBUILD b/community/pidgin-hotkeys/PKGBUILD new file mode 100644 index 000000000..bd2130cab --- /dev/null +++ b/community/pidgin-hotkeys/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 80723 2012-12-01 13:56:24Z 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=2 +pkgdesc="A Pidgin plugin that allows you to define global hotkeys." +arch=('i686' 'x86_64') +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 +} |