Date: Sunday, July 5, 2015 @ 00:29:02 Author: bgyorgy Revision: 136421
Move blueman from AUR with 64 votes and 3.69 % on pkgstats Added: blueman/ blueman/trunk/ blueman/trunk/PKGBUILD blueman/trunk/blueman.install -----------------+ PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ blueman.install | 12 ++++++++++++ 2 files changed, 60 insertions(+) Added: blueman/trunk/PKGBUILD =================================================================== --- blueman/trunk/PKGBUILD (rev 0) +++ blueman/trunk/PKGBUILD 2015-07-04 22:29:02 UTC (rev 136421) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributer: Arthur Zamarin <[email protected]> +# Contributer: Martin Wimpress <[email protected]> + +pkgname=blueman +pkgver=2.0 +pkgrel=3 +pkgdesc="GTK+ Bluetooth Manager" +arch=('i686' 'x86_64') +url="https://github.com/blueman-project/blueman" +license=('GPL') +depends=('bluez' 'bluez-libs' 'gtk3' 'libnotify' 'python-cairo' 'python-dbus' 'python-gobject') +makedepends=('cython' 'intltool') +optdepends=('dnsmasq: Network Access Point (NAP) support' + 'networkmanager: Dial Up Networking (DUN) and Personal Area Networking (PAN) support' + 'pulseaudio-bluetooth: audio devices support') +install=$pkgname.install +source=($pkgname-$pkgver.tar.gz::https://github.com/blueman-project/$pkgname/archive/$pkgver.tar.gz) +sha256sums=('3f6dc827c4410f128f75a15672af8dc76c5c041f6d639d5ab19b15abeb42ff74') + +prepare() { + cd $pkgname-$pkgver + + # Fix path for bluetoothd + sed -i 's|/usr/sbin/bluetoothd|/usr/lib/bluetooth/bluetoothd|' apps/blueman-report + + # Fix non-standard icon names + sed -i 's/gtk-find/edit-find/' data/ui/device-list-widget.ui + sed -i 's/mouse/input-mouse/' blueman/services/Input.py + + NOCONFIGURE=1 ./autogen.sh +} + +build() { + cd $pkgname-$pkgver + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/$pkgname \ + --disable-schemas-compile + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Property changes on: blueman/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: blueman/trunk/blueman.install =================================================================== --- blueman/trunk/blueman.install (rev 0) +++ blueman/trunk/blueman.install 2015-07-04 22:29:02 UTC (rev 136421) @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
