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 # Maintainer: Your Name <youremail@domain.com>
10 pkgdesc="A little command line utility that you can use to export your addresses from a Windows Address Book (used in Microsoft Outlook Express) to a ldif file"
11 arch=('i686' 'x86_64')
12 url="http://lilith.tec-man.com/libwab/"
24 source=(http://lilith.tec-man.com/libwab/files/$pkgname-$pkgver.tar.gz)
26 md5sums=(82c333cb5f737a100c9a431d920dbd5f) #generate with 'makepkg -g'
29 cd "$srcdir/$pkgname-$pkgver"
31 ./configure --prefix=/usr
36 cd "$srcdir/$pkgname-$pkgver"
38 make DESTDIR="$pkgdir/" install
41 # vim:set ts=2 sw=2 et: