mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
20 lines
502 B
Text
20 lines
502 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=build-base
|
|
pkgver=0.5
|
|
pkgrel=3
|
|
url=http://dev.alpinelinux.org/cgit
|
|
pkgdesc="Meta package for build base"
|
|
depends="binutils file gcc g++ make libc-dev fortify-headers patch"
|
|
if [ "$CHOST" != "$CTARGET" ]; then
|
|
pkgname="$pkgname-$CTARGET_ARCH"
|
|
pkgdesc="$pkgdesc ($CTARGET_ARCH)"
|
|
depends="binutils-$CTARGET_ARCH gcc-$CTARGET_ARCH g++-$CTARGET_ARCH $depends"
|
|
fi
|
|
arch="noarch"
|
|
license="MIT"
|
|
options="!check"
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|