mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-30 13:51:31 +01:00
53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libdnet
|
|
pkgver=1.12
|
|
pkgrel=7
|
|
pkgdesc="A simplified, portable interface to several low-level networking routines"
|
|
url="https://github.com/dugsong/libdnet"
|
|
arch="all"
|
|
license="BSD"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=""
|
|
makedepends="autoconf automake bash libtool linux-headers"
|
|
install=
|
|
source="https://github.com/dugsong/libdnet/archive/libdnet-1.12.tar.gz
|
|
automake.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
# the libtool script does not add .so extention to we generate
|
|
# new libtool
|
|
aclocal -I config && autoconf && automake --force --add-missing \
|
|
&& libtoolize || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--without-python \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="d2f1b72eac2a1070959667e9e61dcf20 libdnet-1.12.tar.gz
|
|
059d1e50cfa27cab45af72530a4f74fd automake.patch"
|
|
sha256sums="b6360659c93fa2e3cde9e0a1fc9c07bc4111f3448c5de856e095eb98315dd424 libdnet-1.12.tar.gz
|
|
d29bcb810a722a961fc96793e07fb759c83c375415926802e732c8e4c06ca693 automake.patch"
|
|
sha512sums="a2410a98b76d4bccecf7bcb82ff0b6e9fb809b389f7fea938cc42d94e18622cc5f353d2de737121a1990d9e16e9db8cc2f82677c94f78cd03c9227e815eab9e0 libdnet-1.12.tar.gz
|
|
8a47795c5edb5f67df46a59f2f4d8798b2e34f34e0aae3202a6cca8e475f105e08fa5586a432fba9f443c1df57441cffcdc08f5e4eb53df8e73c2a6c8c075477 automake.patch"
|