blob: 162100a66961e4fd788ca5b72d3f8671ce9d17e0 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=alpine
pkgver=2.20
_ver=${pkgver%_p*}
_pver=${pkgver##*_p}
pkgrel=7
pkgdesc="Text-based email client, friendly for novices but powerful"
url="http://www.washington.edu/alpine/"
arch="all"
license="ASL 2.0"
depends=""
makedepends="openldap-dev heimdal-dev ncurses-dev libressl-dev
automake autoconf libtool"
subpackages="$pkgname-doc"
source="http://patches.freeiz.com/alpine/patches/alpine-$pkgver/alpine-$pkgver.tar.xz
uclibc-musl.patch
"
_builddir="$srcdir"/$pkgname-$_ver
prepare() {
cd "$_builddir"
for i in $source; do
case $i in
*.patch)
msg "Applying $i"
patch -p1 -i "$srcdir"/$i || return 1
;;
esac
done
libtoolize --force && aclocal -I m4 && autoconf \
&& automake --force --add-missing || return 1
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--with-passfile=.pine-pass \
--without-tcl \
--disable-shared \
--with-system-pinerc=/etc/alpine.d/pine.conf \
--with-system-fixed-pinerc=/etc/alpine.d/pine.conf.fixed \
|| return 1
make
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="2d63c923f7995890c0eecfc0c3d1c936 alpine-2.20.tar.xz
f9d8a0f9d6722ba15c473a7925a64285 uclibc-musl.patch"
sha256sums="9b20f0cd08968e7f7c09a1dd49548609fad3318ddf0b32fa3047b8b0eda1c80e alpine-2.20.tar.xz
96b3f504fbb91cfe5e3f7eb970ae618069eee54a0007e905d7aa4f6d514c9df8 uclibc-musl.patch"
sha512sums="be90f5028033e8e98d3df34d3adaef677dc39f7c8ef26efbbf9e610f0f04ddaabd36004774c5b03139e9ba07cc88de6f7257d192398657a3f5d834ad93b63da3 alpine-2.20.tar.xz
1b14352571dd12749bbb6ebc1fd468dbb5a8e4d7a27e87f5baeb00a60d5c1a016d925c6bc776da7e1dbf0ad8d799a65049b64774113274d7ffb07c7b1b196775 uclibc-musl.patch"
|