updated on Mon Jan 16 20:00:43 UTC 2012
[aur-mirror.git] / pdb2txt / PKGBUILD
blob005b508068e6b09c01a3e366a865e10a0511f8f1
1 # Contributor: Isaac Good <archlinux at isaac dot otherinbox.com>
3 pkgname=pdb2txt
4 pkgver=3
5 pkgrel=1
6 pkgdesc="Converts PDB file format to TXT and back"
7 arch=('any')
8 url="http://code.google.com/p/pdb2txt/"
9 license=('GPL2')
10 depends=(gcc-libs)
11 source=('http://pdb2txt.googlecode.com/files/pdb2txt.tar.gz')
12 md5sums=('f035e16f91232eeb8dce723827651044')
14 build() {
15   cd "$srcdir/$pkgname"
17   make || return 1
18   install -D pdb2txt   "$pkgdir/usr/bin/pdb2txt"    || return 1
19   install -D vlna_pipe "$pkgdir/usr/bin/vlna_pipe"  || return 1
22 # vim:set ts=2 sw=2 et: