mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
Glibc plays nicely with kernel26-headers, usbip package added
This commit is contained in:
parent
1974ee692f
commit
035eaece46
4 changed files with 31 additions and 5 deletions
25
community/usbip/PKGBUILD
Normal file
25
community/usbip/PKGBUILD
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Contributor: Evangelos Foutras <foutrelis@gmail.com>
|
||||
|
||||
# This package is from AUR.
|
||||
# Plugbox changes: Disable tcp_wrappers in ./configure.
|
||||
|
||||
pkgname=usbip
|
||||
pkgver=0.1.7
|
||||
pkgrel=1
|
||||
pkgdesc="A general USB device sharing system over IP network"
|
||||
arch=('arm')
|
||||
url="http://usbip.sourceforge.net/"
|
||||
license=('GPL')
|
||||
depends=('sysfsutils' 'tcp_wrappers' 'glib2')
|
||||
options=('!libtool')
|
||||
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
||||
md5sums=('d1094b6d4449787864f8be001639232c')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver/src"
|
||||
|
||||
./autogen.sh || return 1
|
||||
./configure --prefix=/usr --with-tcp-wrappers=no
|
||||
make || return 1
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
|
@ -5,13 +5,13 @@
|
|||
|
||||
pkgname=glibc
|
||||
pkgver=2.11
|
||||
pkgrel=8
|
||||
pkgrel=9
|
||||
pkgdesc="GNU C Library"
|
||||
arch=('arm')
|
||||
url="http://www.gnu.org/software/libc"
|
||||
license=('GPL' 'LGPL')
|
||||
groups=('base')
|
||||
depends=('kernel-headers>=2.6.32' 'tzdata')
|
||||
depends=('kernel26-headers>=2.6.36' 'tzdata')
|
||||
makedepends=('gcc>=4.4')
|
||||
replaces=('glibc-xen')
|
||||
backup=(etc/locale.gen
|
||||
|
|
|
@ -67,7 +67,8 @@ package_kernel26() {
|
|||
'alsa-driver' 'ieee80211' 'hostap-driver26'
|
||||
'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
|
||||
'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs'
|
||||
'gspcav1' 'atl2' 'wlan-ng26' 'rt2500' 'nouveau-drm')
|
||||
'gspcav1' 'atl2' 'wlan-ng26' 'rt2500' 'nouveau-drm'
|
||||
'kernel26-withlinux' 'kernel26-dockstar')
|
||||
install=kernel26.install
|
||||
KARCH=arm
|
||||
|
||||
|
@ -77,7 +78,7 @@ package_kernel26() {
|
|||
mkdir -p ${pkgdir}/{lib/modules,lib/firmware,boot}
|
||||
make INSTALL_MOD_PATH=${pkgdir} modules_install
|
||||
cp System.map ${pkgdir}/boot/System.map26${_kernelname}
|
||||
cp arch/$KARCH/boot/uImage ${pkgdir}/boot/uImage${_kernelname}
|
||||
cp arch/$KARCH/boot/uImage ${pkgdir}/boot/uImage
|
||||
|
||||
# set correct depmod command for install
|
||||
sed \
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#
|
||||
# ==== Variables to set ====
|
||||
# PLUGSCRIPTDIR has been replaced by the 'plugapps-scripts' package
|
||||
INSTALLEDPKGS="base kernel26-withlinux file heimdal ntfs-3g openssh openssl"
|
||||
INSTALLEDPKGS="base kernel26 kernel26-headers file heimdal ntfs-3g openssh openssl"
|
||||
RELEASEVER=2010.12
|
||||
MAKETARGZ=1
|
||||
MAKEUBIIMG=1
|
||||
|
|
Loading…
Reference in a new issue