blob: 29748012a9fab590ccd901a75e7d1cca2f886d81 (
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
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer:
pkgname=meson
pkgver=0.41.2
pkgrel=0
pkgdesc="Build system meant to be both extremely fast and as user friendly as possible"
url="http://mesonbuild.com/"
arch="noarch"
license="ASL 2.0"
depends="python3 ninja"
depends_dev=""
makedepends="python3-dev"
install=""
subpackages="$pkgname-doc"
source="https://github.com/mesonbuild/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
python3 setup.py build
}
package() {
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="0b22f08bc1fc500a416d536aec558cb1f775c90b618c1079cfcdbd1b6a6d9b8b02a57288295e1cbea4e44bab3f23ecdab89e8b7bac5d7025e699e2f71908f97e meson-0.41.2.tar.gz"
|