aboutsummaryrefslogtreecommitdiffstats
path: root/community/nedit/APKBUILD
blob: 5923a75ab8847b50260ee2fd120c9d7d0a65d204 (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
28
29
30
31
32
33
34
35
36
37
38
# Contributor: Isaac Dunham <ibid.ag@gmail.com>
# Maintainer:
pkgname=nedit
pkgver=5.7
pkgrel=0
pkgdesc="The Nirvana Editor, a multi-purpose X11 editor that's easy to use"
url="https://sourceforge.net/projects/nedit/"
arch="all"
license="GPL-2.0-or-later"
# perl for docs, bison and flex are used but may be optional
makedepends="$depends_dev motif-dev bison flex perl"
subpackages="$pkgname-doc"
source="https://downloads.sourceforge.net/project/$pkgname/$pkgname-source/$pkgname-$pkgver-src.tar.gz"

builddir="$srcdir/$pkgname-$pkgver"
build() {
	cd "$builddir"
	make linux
	make docs || make -j1 docs || { env; exit 1; }
}

package() {
	cd "$builddir"
	install -s -Dm 0755 source/nedit "$pkgdir"/usr/bin/nedit
	install -s -Dm 0755 source/nc "$pkgdir"/usr/bin/nedit-nc
}

doc() {
	cd "$builddir"
	default_doc
	for i in README COPYRIGHT ReleaseNotes \
		doc/nedit.doc doc/nedit.html doc/faq.txt; do
		install -Dm 0644 $i "$subpkgdir"/usr/share/doc/nedit
	done

}

sha512sums="cf242d2f8eea4c78649dbeb741f545a3dc8ffaf5bb36239794a4b2635420e5445fa1c77472add79c05ec081d71a0b9df4431f48db365a71692e43869fd4e7932  nedit-5.7-src.tar.gz"