From afcc66154c19126e5a2bd757465bb602f69db1bf Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 18 Sep 2017 16:49:23 +0000 Subject: main/ed: move from testing needed by bc --- main/ed/APKBUILD | 32 ++++++++++++++++++++++++++++++++ testing/ed/APKBUILD | 32 -------------------------------- 2 files changed, 32 insertions(+), 32 deletions(-) create mode 100644 main/ed/APKBUILD delete mode 100644 testing/ed/APKBUILD diff --git a/main/ed/APKBUILD b/main/ed/APKBUILD new file mode 100644 index 0000000000..7079ef1167 --- /dev/null +++ b/main/ed/APKBUILD @@ -0,0 +1,32 @@ +# Maintainer: Breno Leitao +pkgname=ed +pkgver=1.14.2 +pkgrel=0 +pkgdesc="GNU ed is a line-oriented text editor. It is used to create, display, modify and otherwise manipulate text files" +url="https://www.gnu.org/software/ed/" +arch="all" +license="GPL" +depends="" +makedepends="" +subpackages="$pkgname-doc" +source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.lz" + +builddir=$srcdir/$pkgname-$pkgver + +build() { + cd "$builddir" + + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --mandir=/usr/share/man + make all +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="653bcb89788b2d18c726336fb6f17678ac031fe6ea03a93ff248886a075c867ba5423d5471401e44cbdcce3b4cb766b621ca7b70d76881f5044ec3412767b11f ed-1.14.2.tar.lz" diff --git a/testing/ed/APKBUILD b/testing/ed/APKBUILD deleted file mode 100644 index 7079ef1167..0000000000 --- a/testing/ed/APKBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# Maintainer: Breno Leitao -pkgname=ed -pkgver=1.14.2 -pkgrel=0 -pkgdesc="GNU ed is a line-oriented text editor. It is used to create, display, modify and otherwise manipulate text files" -url="https://www.gnu.org/software/ed/" -arch="all" -license="GPL" -depends="" -makedepends="" -subpackages="$pkgname-doc" -source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.lz" - -builddir=$srcdir/$pkgname-$pkgver - -build() { - cd "$builddir" - - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ - --prefix=/usr \ - --mandir=/usr/share/man - make all -} - -package() { - cd "$builddir" - make DESTDIR="$pkgdir" install -} - -sha512sums="653bcb89788b2d18c726336fb6f17678ac031fe6ea03a93ff248886a075c867ba5423d5471401e44cbdcce3b4cb766b621ca7b70d76881f5044ec3412767b11f ed-1.14.2.tar.lz" -- cgit v1.2.3