blob: 260684cae7dc2e0eb27227f5b91e716ec197a463 (
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
39
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=indent
pkgver=2.2.11
pkgrel=0
pkgdesc="indenting utility"
url="http://www.gnu.org/software/indent/"
license="GPL"
depends=
makedepends="gettext-dev"
install=
subpackages="$pkgname-doc $pkgname-lang"
source="http://dev.alpinelinux.org/archive/indent/$pkgname-$pkgver.tar.gz"
arch="all"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--without-included-gettext \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--without-texinfo
make SUBDIRS="intl po src" || return 1
}
package() {
cd "$_builddir"
make SUBDIRS="intl po src man" DESTDIR="$pkgdir" install
}
md5sums="98beafca62472805a3739d3867d5d70f indent-2.2.11.tar.gz"
|