mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-10 16:12:27 +01:00
28 lines
733 B
Plaintext
28 lines
733 B
Plaintext
# Contributor: André Klitzing <aklitzing@gmail.com>
|
|
# Maintainer: André Klitzing <aklitzing@gmail.com>
|
|
pkgname=moe
|
|
pkgver=1.9
|
|
pkgrel=0
|
|
pkgdesc="A powerful and user-friendly text editor"
|
|
url="https://www.gnu.org/software/moe/moe.html"
|
|
arch="all"
|
|
license="GPL"
|
|
makedepends="ncurses-dev texinfo"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.gnu.org/gnu/moe/moe-$pkgver.tar.lz"
|
|
options="!check"
|
|
builddir="$srcdir/"$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929 moe-1.9.tar.lz"
|