# $Id: PKGBUILD 333508 2018-05-30 21:05:38Z arojas $
# Maintainer: Antonio Rojas <arojas@archlinux.org>

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

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

package() {
  cd $pkgname-$pkgver
  install -Dm755 $pkgname -t "$pkgdir"/usr/bin/
}

