blob: b34082c658f6d75f5f140654023581499666f1f1 (
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
31
32
33
34
35
36
37
|
# Contributor: Joel Goguen <contact+aur@jgoguen.ca>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname='buck'
pkgver='2019.05.06.01'
pkgrel=1
pkgdesc='A fast build system that encourages the creation of small, \
reusable modules over a variety of platforms and languages.'
arch=('any')
depends=('python2')
makedepends=('java-environment=8' 'apache-ant')
optdepends=('watchman: prevent Buck from parsing all of your build files every time')
url='https://buckbuild.com'
license=('Apache')
source=("$pkgname-$pkgver.tar.gz::https://github.com/facebook/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('e52268c3e1addcadc758a5d0b96892796b0959eee3a4236238e2efcc8cf3c8e9')
build() {
cd ${pkgname}-${pkgver}
ant
./bin/buck build buck
}
prepare() {
_java_version=$(archlinux-java get|cut -d- -f2)
if [[ ${_java_version} != 8 ]]; then
msg "activate java 8 before building"
exit 1
fi
sed -i 's+executable="python"+executable="python2"+g' ${pkgname}-${pkgver}/build.xml
}
package() {
cd ${pkgname}-${pkgver}
BINPATH=$(./bin/buck targets --show_output buck | cut -d' ' -f2)
install -Dm 755 "${BINPATH}" "${pkgdir}"/usr/bin/buck
}
|