mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
566 B
Bash
19 lines
566 B
Bash
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
||
|
|
||
|
pkgname=pacupdate
|
||
|
pkgver=0.1.1
|
||
|
pkgrel=2
|
||
|
pkgdesc="A simple update notifier for Arch Linux (pacman)"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://code.google.com/p/pacupdate/"
|
||
|
license=('GPL2')
|
||
|
depends=('python-notify' 'notification-daemon' 'pygtk>=2.13' 'sudo' 'pacman>=3.2' 'python>=2.6')
|
||
|
source=(http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('d68407103e0dd9402034cca9f9d1e447')
|
||
|
install=pacupdate.install
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
make PREFIX=/usr DESTDIR=${pkgdir} install
|
||
|
}
|