45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=sed
|
|
pkgver=4.8
|
|
pkgrel=0
|
|
subpackages="$pkgname-doc"
|
|
pkgdesc="GNU stream editor"
|
|
url="https://www.gnu.org/software/sed"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="perl"
|
|
checkdepends="diffutils"
|
|
install="$pkgname.post-deinstall"
|
|
# GNU's master site seems to be down. use a mirror for now
|
|
#source="https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz
|
|
source="https://ftp.heanet.ie/mirrors/ftp.gnu.org/gnu/sed/sed-$pkgver.tar.xz
|
|
"
|
|
# testsuite fails because busybox provides a /usr/bin/timeout
|
|
options="!check"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--bindir=/bin \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-i18n \
|
|
--disable-nls
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
rm -rf "$pkgdir"/usr/lib/charset.alias || true
|
|
rmdir -p "$pkgdir"/usr/lib 2>/dev/null || true
|
|
}
|
|
|
|
sha512sums="7de25d9bc2981c63321c2223f3fbcab61d7b0df4fcf7d4394b72400b91993e1288d8bf53948ed5fffcf5a98c75265726a68ad4fb98e1d571bf768603a108c1c8 sed-4.8.tar.xz"
|