aports/main/libedit/APKBUILD

48 lines
1.2 KiB
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libedit
pkgver=20250104.3.1
_ver=${pkgver/./-}
pkgrel=0
pkgdesc="BSD line editing library"
url="https://www.thrysoee.dk/editline"
arch="all"
license="BSD-3-Clause"
depends_dev="bsd-compat-headers ncurses-dev"
makedepends_host="$depends_dev"
subpackages="$pkgname-static $pkgname-dev $pkgname-doc"
source="https://www.thrysoee.dk/editline/libedit-$_ver.tar.gz"
builddir="$srcdir"/libedit-$_ver
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
# Prevent conflict with editline-doc and readline-doc
mv "$pkgdir"/usr/share/man/man3/editline.3 \
"$pkgdir"/usr/share/man/man3/libedit.3
# update symlinks
find "$pkgdir"/usr/share/man/man3/ -type l | while IFS= read -r path; do
[ "$(readlink "$path")" != 'editline.3.gz' ] && continue
echo ln -s -f -T -- 'libedit.3.gz' "$path"
done
}
sha512sums="
4b4a8b4b1f2cb952bbb3d128605eba9bc7cd0ad35c44b2c099f067c8bea69455bd11faae4ff20384bbe0ea901b25a1249d8323dea4ccd6141a17393f62bb8df2 libedit-20250104-3.1.tar.gz
"