mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
670 B
Bash
21 lines
670 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Corrado 'bardo' Primier <corrado.primier@mail.polimi.it>
|
|
# Contributor: cs-cam <me.at.camdaniel.com>
|
|
|
|
pkgname=wammu
|
|
pkgver=0.30.1
|
|
pkgrel=1
|
|
pkgdesc="A wxPython-based GUI for Gammu"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cihar.com/gammu/wammu"
|
|
license=('GPL')
|
|
depends=('gammu' 'notification-daemon' 'wxpython')
|
|
optdepends=('gnome-bluetooth: bluetooth support'
|
|
'pybluez: bluetooth support')
|
|
source=(http://dl.cihar.com/wammu/latest/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('adb6ba4974204f7075f4dc423615ded0')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
python setup.py install --root=${pkgdir}
|
|
}
|