mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
|
|
# Contributor: Valmantas Palikša <walmis@balticum-tv.lt>
|
|
# Contributor: blasse <koralik@gmail.com>
|
|
# Contributor: Maciej Wilczyński <wiqert@gmail.com>
|
|
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
|
|
|
|
pkgname=blueman
|
|
pkgver=1.10
|
|
pkgrel=1
|
|
pkgdesc="GTK+ bluetooth manager"
|
|
arch=('i686' 'x86_64')
|
|
license=("GPL")
|
|
url="http://blueman-project.org"
|
|
depends=('python-notify' 'bluez>=4.25' 'dbus-python' 'gtk2>=2.12' 'glib2>=2.12'\
|
|
'pygobject>=2.12' 'startup-notification>=0.9' 'obex-data-server'\
|
|
'policykit-gnome' 'notification-daemon' 'xdg-utils' 'hicolor-icon-theme')
|
|
makedepends=('pygobject' 'pyrex' 'pkgconfig' 'startup-notification' 'bluez' 'gtk2' 'intltool')
|
|
optdepends=("dnsmasq: For creating PAN network" "gconf>=2.0: For gconf configuration support")
|
|
conflicts=(bluez-gnome)
|
|
options=(!libtool)
|
|
install=$pkgname.install
|
|
source=(http://download.tuxfamily.org/blueman/${pkgname}-${pkgver}.tar.gz)
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/blueman/ --with-no-runtime-deps-check
|
|
# clear tmp
|
|
make clean
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
ln -s "/usr/bin/blueman-sendto" "$pkgdir/usr/bin/bluetooth-sendto"
|
|
}
|
|
|
|
md5sums=('f9058305c42038678d5023fcabba22a4')
|