summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c39a2da4168bbaa878c872ec14118db2c8bdfbb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Baldur SigurĂ°sson <baldursigurds@gmail.com>
pkgname=lattice
pkgver=0.0
pkgrel=1
pkgdesc="An interface to latco, for computing lattice cohomology"
arch=('any')
url="https://bitbucket.org/baldursigurds/lattice"
license=('GPL')
depends=('glibc' 'latco')
source=(git+https://bitbucket.org/baldursigurds/lattice)
md5sums=('SKIP') #autofill using updpkgsums

build() {
  cd lattice
  make
}

package() {
  cd lattice
  make DESTDIR="$pkgdir"/usr install
}