mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Added sysfsutils and wireless_tools just so they would stop complaining on upgrade
This commit is contained in:
parent
861d6f1c25
commit
b3efbc44aa
3 changed files with 65 additions and 0 deletions
28
core/sysfsutils/PKGBUILD
Executable file
28
core/sysfsutils/PKGBUILD
Executable file
|
@ -0,0 +1,28 @@
|
|||
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||||
|
||||
# Plugbox changes: Just a bump of pkgrel, if it goes above 7, delete me
|
||||
|
||||
pkgname=sysfsutils
|
||||
pkgver=2.1.0
|
||||
pkgrel=7
|
||||
pkgdesc="System Utilities Based on Sysfs"
|
||||
arch=('arm')
|
||||
license=('GPL' 'LGPL')
|
||||
url="http://linux-diag.sourceforge.net/Sysfsutils.html"
|
||||
groups=('base')
|
||||
depends=('glibc')
|
||||
source=(http://downloads.sourceforge.net/sourceforge/linux-diag/$pkgname-$pkgver.tar.gz)
|
||||
md5sums=('14e7dcd0436d2f49aa403f67e1ef7ddc')
|
||||
options=(!libtool)
|
||||
|
||||
build() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
./configure --prefix=/usr --mandir=/usr/share/man
|
||||
make || return 1
|
||||
make DESTDIR=$pkgdir install
|
||||
|
||||
cd $pkgdir
|
||||
mkdir -v lib
|
||||
mv -v usr/lib/libsysfs.so.2* lib/
|
||||
ln -svf ../../lib/libsysfs.so.2 usr/lib/libsysfs.so
|
||||
}
|
25
core/wireless_tools/PKGBUILD
Executable file
25
core/wireless_tools/PKGBUILD
Executable file
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||||
# Contributer: Jason Chu <jchu@xentac.net>
|
||||
|
||||
# Plugbox changes: Just a pkgrel bump, if ABS goes above 5, delete me
|
||||
|
||||
pkgname=wireless_tools
|
||||
pkgver=29
|
||||
pkgrel=5
|
||||
pkgdesc="Wireless Tools"
|
||||
arch=('arm')
|
||||
url="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
||||
license=('GPL')
|
||||
depends=('glibc')
|
||||
backup=('etc/conf.d/wireless')
|
||||
source=(http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.29.tar.gz wireless.conf.d)
|
||||
md5sums=('e06c222e186f7cc013fd272d023710cb'
|
||||
'027576534885b8d5dded9be546057b12')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/wireless_tools.29
|
||||
|
||||
make || return 1
|
||||
make INSTALL_DIR="${pkgdir}/usr/sbin" INSTALL_LIB="${pkgdir}/usr/lib" INSTALL_INC="${pkgdir}/usr/include" INSTALL_MAN="${pkgdir}/usr/share/man" install || return 1
|
||||
install -D -m644 ${srcdir}/wireless.conf.d "${pkgdir}/etc/conf.d/wireless" || return 1
|
||||
}
|
12
core/wireless_tools/wireless.conf.d
Executable file
12
core/wireless_tools/wireless.conf.d
Executable file
|
@ -0,0 +1,12 @@
|
|||
#
|
||||
# Settings for wireless cards
|
||||
#
|
||||
# For each wireless interface declared in INTERFACES (in rc.conf), declare
|
||||
# a wlan_${IF} variable that contains the arguments to be passed to
|
||||
# iwconfig(8). Then list the original interface name in the
|
||||
# WLAN_INTERFACES array.
|
||||
#
|
||||
|
||||
#wlan_eth0="eth0 mode managed essid default"
|
||||
#WLAN_INTERFACES=(eth0)
|
||||
|
Loading…
Reference in a new issue