summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3ba68a99953cf76df401578f2fd6665ebee51637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Peter Sutton <foxxy@foxdogstudios.com>

pkgname=postgresql-unit
pkgver=3.1
pkgrel=1
pkgdesc='SI Units for PostgreSQL'
arch=('i686' 'x86_64')
url='https://github.com/ChristophBerg/postgresql-unit'
license=('GPL3')
depends=('postgresql')
source=('https://codeload.github.com/ChristophBerg/postgresql-unit/tar.gz/3.1')
sha256sums=('60a8be238b7521d37b0541e07ff3be775490c53e184524b0b18c3b0bd2be06f2')

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

package() {
  cd ${pkgname}-${pkgver}
  make DESTDIR="${pkgdir}" install
}