blob: c68cc86b5a3ed3a7fc46890d5f7e3399a6c5e28d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=build-base
pkgver=0.2
pkgrel=1
url=http://dev.alpinelinux.org/cgit
pkgdesc="Meta package for build base"
if [ "$ALPINE_LIBC" = "eglibc" ]; then
depends="binutils gcc make patch eglibc-dev g++"
else
depends="binutils gcc make patch uclibc-dev g++"
fi
license=none
build() {
# meta package
mkdir -p "$pkgdir"
}
|