ifenslave: switch to /usr.

This commit is contained in:
Juan RP 2012-07-09 15:07:29 +02:00
parent ab52b76b4d
commit 5853a770dd
1 changed files with 8 additions and 15 deletions

View File

@ -1,7 +1,9 @@
# Template file for 'ifenslave' # Template file for 'ifenslave'
pkgname=ifenslave pkgname=ifenslave
version=1.1.0 version=1.1.0
revision=2 revision=3
nofetch=yes
noextract=yes
short_desc="Attach and detach slave interfaces to a bonding device" short_desc="Attach and detach slave interfaces to a bonding device"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=8773541ce097fdc4c5b9e7da12a82dffbb30cd91f7bc169f52f05f93b7fc3060 checksum=8773541ce097fdc4c5b9e7da12a82dffbb30cd91f7bc169f52f05f93b7fc3060
@ -15,20 +17,11 @@ long_desc="
The kernel must have support for bonding devices for ifenslave to be useful. The kernel must have support for bonding devices for ifenslave to be useful.
This package supports 2.6.x kernels and the most recent 2.4.x kernels." This package supports 2.6.x kernels and the most recent 2.4.x kernels."
nofetch=yes do_build() {
noextract=yes gcc -Wall -Wstrict-prototypes ${FILESDIR}/ifenslave.c -o ifenslave
do_build()
{
cd ${wrksrc} || return 1
gcc -Wall -Wstrict-prototypes ${FILESDIR}/ifenslave.c \
-o ifenslave || return 1
} }
do_install() do_install() {
{ vinstall ifenslave 755 usr/sbin
install -D -m755 ${wrksrc}/ifenslave ${DESTDIR}/sbin/ifenslave vinstall ${FILESDIR}/ifenslave.8 755 usr/share/man/man8
install -D -m644 ${FILESDIR}/ifenslave.8 \
${DESTDIR}/usr/share/man/man8/ifenslave.8 || return 1
} }