mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
24 lines
753 B
Bash
24 lines
753 B
Bash
|
# $Id: PKGBUILD 27720 2009-02-25 00:15:30Z eric $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gdeskcal
|
||
|
pkgver=1.01
|
||
|
pkgrel=2
|
||
|
pkgdesc="gDeskCal is a cute little eye-candy calendar for your desktop."
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL')
|
||
|
url="http://customize.org/gDeskCal"
|
||
|
depends=('pygtk')
|
||
|
makedepends=('perlxml')
|
||
|
source=(ftp://ftp.archlinux.org/other/gdeskcal/gDeskCal-${pkgver}.tar.gz gdeskcal-utf8.diff)
|
||
|
md5sums=('6198d3fb3b28eec6ec430564defda781' '9a023efe0efbe3a2f3877da555e6986b')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/gDeskCal-${pkgver}
|
||
|
patch -p1 < ../gdeskcal-utf8.diff || return 1
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
}
|