summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e99ef31a2662272670be2a3ae01c16b5d6a0e3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Author: Jayson Reis <santosdosreis@gmail.com>

pkgname=balde
pkgver=0.1.2
pkgrel=2
pkgdesc="A microframework for C based on GLib and bad intentions."
arch=('x86_64')
url="http://balde.io/"
license=('LGPL2')
depends=('fcgi' 'glib2' 'shared-mime-info' 'peg')
optdepends=('valgrind: debug memory leaks')
source=(https://github.com/balde/balde/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
sha256sums=('d73a601479a1b29b26a0722ff2fe8ef38abf0ede04168217c729bb9d7a34915a')

build() {
  cd "$srcdir/$pkgname-$pkgver/"
  ./configure --prefix=/usr
}

check() {
  cd "$srcdir/$pkgname-$pkgver/"
  make -j1 check
}

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

# vim:set ts=2 sw=2 et: