mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 10:42:12 +01:00
build-base should only include basic build tools for compiling C/C++ programs. patch(1) is a useful tool in that process but our busybox version already ships a patch program. However, abuild(1) needs the GNU version of patch thus this dependency was moved to the alpine-sdk package.
19 lines
301 B
Plaintext
19 lines
301 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=build-base
|
|
pkgver=0.4
|
|
pkgrel=1
|
|
url=http://dev.alpinelinux.org/cgit
|
|
pkgdesc="Meta package for build base"
|
|
depends="binutils gcc make libc-dev fortify-headers g++"
|
|
arch="noarch"
|
|
license=none
|
|
|
|
build() {
|
|
:
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|