summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fca49c54bf0a8428a36b84edd3256efa0dace784 (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
# Maintainer: Michel Wohlert <michel.wohlert@gmail.com>

pkgname=quickerd
pkgver=1
pkgrel=1
pkgdesc='quicker way to draw an ERD!'
arch=('i686' 'x86_64')
license=('GPL')
url='https://github.com/0pointr/quickerd.git'
depends=()
makedepends=('git')
provides=('quickerd')
conflicts=('quickerd')
source=('git+https://github.com/0pointr/quickerd.git')
sha256sums=('SKIP')

build() {
        cd quickerd/
        make
}

package() {
        install -Dm 755 "$srcdir/quickerd/quickerd" "$pkgdir/usr/bin/quickerd"
}