mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
795 B
Bash
25 lines
795 B
Bash
# $Id: PKGBUILD 1016 2009-08-11 19:47:05Z jlichtblau $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
|
# Contributor: Mathias Nedrebø <mathias <at> nedrebo.org>
|
|
|
|
pkgname=alunn
|
|
pkgver=0.7.13
|
|
pkgrel=2
|
|
pkgdesc="System tray notification applet for Arch Linux updates and news"
|
|
arch=('i686' 'x86_64')
|
|
url="http://nedrebo.org/code/alunn"
|
|
license=('GPL')
|
|
depends=('dbus-python' 'gnome-python')
|
|
optdepends=('notification-daemon: Desktop notification support')
|
|
source=(http://nedrebo.org/page/code/$pkgname/.files/$pkgname-$pkgver.tar.gz)
|
|
|
|
md5sums=('45de5f6beca92738148c34ee1e682897')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
sed -i 's/python2.5/python2.6/' install.sh || return 1
|
|
|
|
./install.sh --prefix=${pkgdir} || return 1
|
|
}
|