17 lines
481 B
Bash
17 lines
481 B
Bash
# Template file for 'base-devel'
|
|
pkgname=base-devel
|
|
version=20181003
|
|
revision=1
|
|
build_style=meta
|
|
depends="autoconf automake bc binutils bison ed flex gcc gettext
|
|
groff libtool m4 make patch pkg-config texinfo unzip xz"
|
|
short_desc="Void Linux development tools meta package"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="Public Domain"
|
|
homepage="http://www.voidlinux.eu/"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) depends+=" musl-devel";;
|
|
*) depends+=" glibc-devel";;
|
|
esac
|