75fe711be0
Add convenience symlinks.
21 lines
571 B
Bash
21 lines
571 B
Bash
# Template file for 'meson'
|
|
pkgname=meson
|
|
version=0.35.1
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python3-module
|
|
pycompile_module="mesonbuild"
|
|
hostmakedepends="python3-devel"
|
|
depends="python3 ninja"
|
|
short_desc="A super fast build system"
|
|
license="Apache-2.0"
|
|
maintainer="Dylan Katz <muddmaker.97@gmail.com>"
|
|
homepage="http://mesonbuild.com"
|
|
distfiles="https://github.com/mesonbuild/meson/archive/${version}.tar.gz"
|
|
checksum=86e6f4bf234a9851304ea21ebc6dbc4de549bb0662c38e236ba0187156c20968
|
|
|
|
post_install() {
|
|
for f in ${DESTDIR}/usr/bin/*.py; do
|
|
ln -sfr ${f} ${f%%.py}
|
|
done
|
|
}
|