summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: baa1816835cc25c977cd062625bcbb28e9db54d8 (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: Anton Leontiev <scileont /at/ gmail.com>
# Contributor: Henning Garus <henning.garus@gmail.com>
# Contributor: Patrik Hautala <phloyd@iki.fi>

pkgname=moe
pkgver=1.14
pkgrel=1
pkgdesc='A powerful, 8-bit clean, text editor. Supports ISO-8859-15 and ASCII.'
arch=('i686' 'x86_64')
url='http://www.gnu.org/software/moe/moe.html'
license=('GPL')
depends=('ncurses')
backup=('etc/moe.conf')
source=(http://ftpmirror.gnu.org/moe/$pkgname-$pkgver.tar.lz)
md5sums=('d8bbcdfac39afedcd5baf430af310ef6')

build() {
	cd $pkgname-$pkgver
	./configure --prefix=/usr --sysconfdir=/etc \
		CPPFLAGS="$CPPFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS"
	make
}

package() {
	cd $pkgname-$pkgver
	make DESTDIR="$pkgdir" install
}