mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
testing/meson: new aport
This commit is contained in:
parent
8e27a8ebff
commit
f4a05b94a6
28
testing/meson/APKBUILD
Normal file
28
testing/meson/APKBUILD
Normal file
@ -0,0 +1,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"
|
Loading…
Reference in New Issue
Block a user