summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e08ec70a3033ee1397497577fd9f5f6ae5f88303 (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
# Maintainer: Jason White <jasonaw0 at gmail dot com>
pkgname=button
pkgver=0.0.1
pkgrel=1
pkgdesc="A fast, correct, and robust build system"
arch=('i686' 'x86_64')
url="https://github.com/jasonwhite/$pkgname"
license=('MIT')
depends=('sqlite')
optdepends=('strace: For automatic dependency detection (highly recommended)'
            'button-lua: For writing build descriptions in Lua (highly recommended)')
makedepends=('dmd' 'dub')
source=("https://github.com/jasonwhite/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('8b01fddfe4a319d9ed62898d406fcb62')

build() {
    cd "$pkgname-$pkgver"
    dub build --build=release
}

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