summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e4df9fd7594f54f18949f3d52e5c5c585c528940 (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: Michael Armbruster <michael at armbrust dot me>

pkgname=precomp
_gitname=${pkgname}-cpp
pkgver=0.4.7
pkgrel=1
pkgdesc="Recompressor that further compresses already compressed files"
arch=('x86_64')
url="https://github.com/schnaader/precomp-cpp"
license=('Apache')
depends=('gcc-libs')
source=("https://github.com/schnaader/${_gitname}/archive/v${pkgver}.tar.gz")
md5sums=('6a766bdc8e6b065525cb03dbfb8cb4e0')

build() {
	cd "${_gitname}-${pkgver}"
	make
}

package() {
	cd "${_gitname}-${pkgver}"
	mkdir -p "${pkgdir}/usr/bin"
	install -m 0755 precomp "${pkgdir}/usr/bin"
}