# $Id: PKGBUILD 126423 2015-01-22 19:59:54Z arojas $
# Maintainer: Antonio Rojas <arojas@archlinux.org>

pkgname=buckygen
pkgver=1.0
pkgrel=1
pkgdesc="A program for the efficient generation of all nonisomorphic fullerenes"
arch=('i686' 'x86_64')
url="http://caagt.ugent.be/buckygen/"
license=('GPL')
depends=('glibc')
source=("http://caagt.ugent.be/$pkgname/$pkgname-$pkgver.zip")
md5sums=('e94ba278b6d08d5bde9464823c88f1e7')

build() {
  cd $pkgname-$pkgver
  make
}

package() {
  cd $pkgname-$pkgver

  mkdir -p "$pkgdir"/usr/bin
  cp $pkgname "$pkgdir"/usr/bin/
}

