updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / xdiary / PKGBUILD
blobb7dd8098ffc22a3c3071d27ef488e851b6c58fff
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: skualito <lepascalou@gmail.com>
7 pkgname=xdiary
8 pkgver=1.32
9 pkgrel=2
10 pkgdesc="Displays a one-month or full-year calendar, in association with a two-pane daily diary"
11 arch=(i686)
12 url="http://directory.fsf.org/project/xdiary"
13 license=('GPL2')
14 groups=()
15 depends=('sh' 'libxaw')
16 makedepends=('imake')
17 source=(ftp://ftp.ac-grenoble.fr/ge/Office/$pkgname-$pkgver.tgz)
18 md5sums=(d0503881b6c5f7071ef310a3303f4234) 
20 build() {
21           cd "$srcdir/$pkgname-$pkgver"
22           xmkmf
23           sed -i "s|-lXaw95|-lXaw|" Makefile
24           make || return 1
25           make install DESTDIR=${pkgdir}
26           mkdir -p $pkgdir/usr/share/man/man1
27           cp xdiary.man $pkgdir/usr/share/man/man1/xdiary.1
28           cp widget.man $pkgdir/usr/share/man/man1/widget.1
29           }
31           # vim:set ts=2 sw=2 et: