blob: e79290b4303995c839df3494126c4dea0cfcc622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# original package source has sigining issues, alternative package
# has a different directory..
source=(https://gitlab.archlinux.org/tpowa/${pkgname}/-/archive/${pkgver}-${pkgrel}/${pkgname}-${pkgver}-${pkgrel}.tar.gz)
eval "$(
declare -f package | \
sed '
s/cd.*archboot.*/cd "\$srcdir\/archboot-\${pkgver}-\${pkgrel}"/
'
)"
# broadcom-wl doesn't build on i486
if [ "${CARCH}" = 'i486' ]; then
depends=(${depends[@]/broadcom-wl/})
fi
|