mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 10:12:59 +01:00
30 lines
744 B
Plaintext
30 lines
744 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=bridge-utils
|
|
pkgver=1.5
|
|
pkgrel=0
|
|
pkgdesc="Tools for configuring the Linux kernel 802.1d Ethernet Bridge"
|
|
url="http://linux-net.osdl.org/index.php/Bridge"
|
|
arch="all"
|
|
license="GPL-2"
|
|
subpackages="$pkgname-doc"
|
|
depends=""
|
|
makedepends="autoconf"
|
|
source="http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
autoconf
|
|
./configure --prefix=/ \
|
|
--mandir=/usr/share/man \
|
|
--libdir=/usr/lib \
|
|
--includedir=/usr/include \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make install DESTDIR="$pkgdir" || return 1
|
|
}
|
|
md5sums="ec7b381160b340648dede58c31bb2238 bridge-utils-1.5.tar.gz"
|