mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
d67e3b9f25
==> Running makepkg ver: 3.4.0-chakra-0.4 ==> Making package: broadcom-wl-lts 5.100.82.38-2 (Wed Mar 30 20:39:01 UTC 2011) ==> Checking Runtime Dependencies... ==> Checking Buildtime Dependencies... ==> Retrieving Sources... -> Found hybrid-portsrc_x86_32-v5_100_82_38.tar.gz -> Found license.patch -> Found semaphore.patch -> Found mutex-sema.patch ==> Validating source files with sha1sums... hybrid-portsrc_x86_32-v5_100_82_38.tar.gz ... Passed license.patch ... Passed semaphore.patch ... Passed mutex-sema.patch ... Passed ==> Extracting Sources... -> Extracting hybrid-portsrc_x86_32-v5_100_82_38.tar.gz with bsdtar ==> Removing existing pkg/ directory... ==> Starting build()... patching file src/wl/sys/wl_linux.c patching file src/wl/sys/wl_iw.h patching file src/wl/sys/wl_linux.c Hunk #1 succeeded at 483 (offset 1 line). make: Entering directory /usr/src/linux-2.6.35-CHAKRA-LTS' ==> Entering fakeroot environment... ==> Debug: sourcing ../_buildscripts/user.conf ==> Starting package()... ==> Tidying install... -> Removing doc files... -> Purging other files... -> Compressing man and info pages... -> Stripping unneeded symbols from binaries and libraries... ==> Creating package... -> Generating .PKGINFO file... -> Adding install script... -> Compressing package... ==> Signing package... -> Created signature file /home/phil/core-testing/_repo/local/broadcom-wl-lts-5.100.82.38-2-i686.pkg.tar.xz.sig. ==> Leaving fakeroot environment. ==> Finished making: broadcom-wl-lts 5.100.82.38-2 (Wed Mar 30 20:39:11 UTC 2011)
47 lines
1.5 KiB
Bash
47 lines
1.5 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# Find the kernel name inside the chroot
|
|
_kernver=`pacman -Qf kernel26 | cut -c10-15 | sed 's/kernel26 //g'`-CHAKRA
|
|
|
|
pkgname=broadcom-wl
|
|
pkgver=5.100.82.38
|
|
pkgrel=5
|
|
pkgdesc='Broadcom 802.11abgn hybrid Linux networking device driver'
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.broadcom.com/support/802.11/linux_sta.php'
|
|
license=('custom')
|
|
depends=('kernel26>=2.6.38rc5')
|
|
makedepends=('kernel26-headers')
|
|
|
|
[ "$CARCH" = 'x86_64' ] && ARCH=x86_64 || ARCH=x86_32
|
|
source=("http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_${ARCH}-v${pkgver//./_}.tar.gz"
|
|
'license.patch'
|
|
'semaphore.patch'
|
|
'mutex-sema.patch')
|
|
|
|
sha1sums=('3062830f86c5f1f41d8a4b26d6e0072dc989c7ba'
|
|
'ea7b67982ddc0f56fd3becb9914fd4458fe7d373'
|
|
'105f8e1d48ebe1f25d53859e5ab9326a27435c66'
|
|
'97f2bcbbe3b9ac5d88e571fc536f5d59dbc789e1')
|
|
[ "$CARCH" = 'x86_64' ] && sha1sums[0]='6076de3bd8206b3e7b8bfc2eadbe3a97eec4e735'
|
|
|
|
install=install
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
patch -p1 < license.patch
|
|
patch -p1 < semaphore.patch
|
|
patch -p1 < mutex-sema.patch
|
|
make -C /lib/modules/$_kernver/build M=`pwd`
|
|
}
|
|
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
install -D -m 755 wl.ko "$pkgdir/lib/modules/`uname -r`/kernel/drivers/net/wireless/wl.ko"
|
|
install -D -m 644 lib/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
} |