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>
10 pkgdesc="Displays a one-month or full-year calendar, in association with a two-pane daily diary"
12 url="http://directory.fsf.org/project/xdiary"
15 depends=('sh' 'libxaw')
17 source=(ftp://ftp.ac-grenoble.fr/ge/Office/$pkgname-$pkgver.tgz)
18 md5sums=(d0503881b6c5f7071ef310a3303f4234)
21 cd "$srcdir/$pkgname-$pkgver"
23 sed -i "s|-lXaw95|-lXaw|" Makefile
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
31 # vim:set ts=2 sw=2 et: