blob: 11f61c56f23a07d12d20254c9618239c401aca48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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="http://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"
|