blob: e665924297422d2b7904b35243eee4da9389d145 (
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
|
# Description: meson implementation in C
# URL: https://sr.ht/~lattis/muon/
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Depends on: git ninja
name=muon
commit=30d2e7a
version=git-$commit
release=1
source=()
gitsource=https://git.sr.ht/~lattis/muon/
build() {
git clone $gitsource
cd $name
git checkout $commit
./bootstrap.sh build
build/muon setup build
ninja -C build
install -Dm755 -t $PKG/usr/bin build/muon
ln -s muon $PKG/usr/bin/meson
}
|