updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / libwab / PKGBUILD
blob98b45ac80f9675b0a0a5cd992dce136b177cd1db
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>
7 pkgname=libwab
8 pkgver=060901
9 pkgrel=1
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/"
13 license=('GPL')
14 groups=()
15 depends=(glibc)
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 changelog=
24 source=(http://lilith.tec-man.com/libwab/files/$pkgname-$pkgver.tar.gz)
25 noextract=()
26 md5sums=(82c333cb5f737a100c9a431d920dbd5f) #generate with 'makepkg -g'
28 build() {
29   cd "$srcdir/$pkgname-$pkgver"
31   ./configure --prefix=/usr
32   make
35 package() {
36   cd "$srcdir/$pkgname-$pkgver"
38   make DESTDIR="$pkgdir/" install
41 # vim:set ts=2 sw=2 et: