* update ed to 1.20.2-2
This commit is contained in:
parent
bdcdedf730
commit
fcaef42ee0
36
ed/PKGBUILD
36
ed/PKGBUILD
@ -1,39 +1,41 @@
|
|||||||
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
||||||
# Maintainer: Dave Reisner <dreisner@archlinux.org>
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
|
||||||
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
# Contributor: Dave Reisner <dreisner@archlinux.org>
|
||||||
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
||||||
|
|
||||||
pkgname=ed
|
pkgname=ed
|
||||||
pkgver=1.20.1
|
pkgver=1.20.2
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc="A POSIX-compliant line-oriented text editor"
|
pkgdesc='A POSIX-compliant line-oriented text editor'
|
||||||
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
||||||
license=('GPL')
|
license=(GPL-2.0-only)
|
||||||
url="https://www.gnu.org/software/ed/ed.html"
|
url="https://www.gnu.org/software/ed/ed.html"
|
||||||
depends=('glibc' 'sh')
|
depends=(glibc
|
||||||
options=('!emptydirs')
|
sh)
|
||||||
validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742') # Antonio Diaz Diaz
|
options=(!emptydirs)
|
||||||
source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
|
_archive="$pkgname-$pkgver"
|
||||||
sha256sums=('b1a463b297a141f9876c4b1fcd01477f645cded92168090e9a35db2af4babbca'
|
source=("https://ftp.gnu.org/gnu/ed/$_archive.tar.lz"{,.sig})
|
||||||
|
sha256sums=('65fec7318f48c2ca17f334ac0f4703defe62037bb13cc23920de077b5fa24523'
|
||||||
'SKIP')
|
'SKIP')
|
||||||
|
validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742') # Antonio Diaz Diaz
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname-$pkgver"
|
cd "$_archive"
|
||||||
|
./configure \
|
||||||
./configure --prefix=/ \
|
--prefix=/\
|
||||||
--bindir=/usr/bin \
|
--bindir=/usr/bin \
|
||||||
--mandir=/usr/share/man \
|
--mandir=/usr/share/man \
|
||||||
--infodir=/usr/share/info \
|
--infodir=/usr/share/info \
|
||||||
"CPPFLAGS=$CPPFLAGS" \
|
"CPPFLAGS=$CPPFLAGS" \
|
||||||
"CFLAGS=$CFLAGS" \
|
"CFLAGS=$CFLAGS" \
|
||||||
"LDFLAGS=$LDFLAGS"
|
"LDFLAGS=$LDFLAGS"
|
||||||
|
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
make -C "$pkgname-$pkgver" check
|
make -C "$_archive" check
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
|
make -C "$_archive" "DESTDIR=$pkgdir" install
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user