summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e5cbc8784163be6162545c8e49ccf438dea25d56 (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: Daniel Lehmann <?>
pkgname=bomutils
pkgver=0.2
pkgrel=2
pkgdesc='Open source tools to create bill-of-materials files used in Mac OS X installers'
url='https://github.com/peek1e/bomutils'
arch=('x86_64')
license=('GPL2')
source=("$pkgname::git+https://github.com/PeeK1e/$pkgname")
makedepends=()
provides=('bomutils')
conflicts=('bomutils-git')
md5sums=('SKIP')

build() {
    cd "$srcdir/$pkgname"
    make
}

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