42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
# Template file for 'alpine'
|
|
pkgname=alpine
|
|
version=2.26
|
|
revision=4
|
|
_githash=9726c098a739edfdca6218bc5dee104c310957e9
|
|
_gitshort="${_githash:0:7}"
|
|
build_style=gnu-configure
|
|
configure_args="--with-passfile=.pine-passfile --without-tcl --disable-shared
|
|
--with-ssl-dir=${XBPS_CROSS_BASE}/usr
|
|
--with-system-pinerc=/etc/${pkgname}.d/pine.conf
|
|
--with-system-fixed-pinerc=/etc/${pkgname}.d/pine.conf.fixed"
|
|
hostmakedepends="hunspell"
|
|
makedepends="gettext-devel libldap-devel mit-krb5-devel ncurses-devel"
|
|
short_desc="Apache-licensed PINE mail user agent (with Chappa patches)"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="Apache-2.0, BSD-4-Clause"
|
|
homepage="https://repo.or.cz/alpine.git"
|
|
distfiles="https://repo.or.cz/alpine.git/snapshot/${_githash}.tar.gz"
|
|
checksum=c8c377eab0f65b51283e0ad3144be143065dca4463d12ccf5092ae841515a431
|
|
# weird fail with openssl3 otherwise
|
|
disable_parallel_build=yes
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
|
|
makedepends+=" libxcrypt-devel"
|
|
fi
|
|
|
|
post_extract() {
|
|
sed -i -e '/run test program/s/^/: /' \
|
|
-e 's/linux-gnu/linux-/g' ${wrksrc}/configure
|
|
touch /etc/shadow # bleh
|
|
}
|
|
|
|
do_build() {
|
|
make -C pith help_c_gen help_h_gen \
|
|
CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" CPPFLAGS= LDFLAGS="$BUILD_LDFLAGS"
|
|
make ${makejobs} all CC="$CC"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense NOTICE
|
|
}
|