18 lines
500 B
Bash
18 lines
500 B
Bash
# Template file for 'base-devel'
|
|
pkgname=base-devel
|
|
version=20181003
|
|
revision=2
|
|
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.org/"
|
|
lib32disabled=yes
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) depends+=" musl-devel";;
|
|
*) depends+=" glibc-devel";;
|
|
esac
|