void-packages/srcpkgs/sblg/template
2019-06-06 17:30:11 +02:00

36 lines
1.1 KiB
Bash

# Template file for 'sblg'
pkgname=sblg
version=0.4.26
revision=1
build_style=configure
configure_args="PREFIX=/usr MANDIR=/usr/share/man"
makedepends="expat-devel"
short_desc="Simple off-line blog utility"
maintainer="John <johnz@posteo.net>"
license="ISC"
homepage="https://kristaps.bsd.lv/sblg/"
changelog="https://kristaps.bsd.lv/sblg/archive.html"
distfiles="https://kristaps.bsd.lv/sblg/snapshots/${pkgname}-${version}.tar.gz"
checksum=e031a54a5d4d8a3bf92d4176a8240c8a1f9c1499d5111c14e9a6ad1b15a159dd
pre_configure() {
if [ "$CROSS_BUILD" ]; then
case $XBPS_TARGET_MACHINE in
*-musl) echo HAVE___PROGNAME=true HAVE_ERR=1 HAVE_MEMMEM=1\
HAVE_MEMCHR=1 HAVE_PROGRAM_INVOCATION_SHORT_NAME=1\
HAVE_SECCOMP_FILTER=1 HAVE_SOCK_NONBLOCK=1\
HAVE_STRLCAT=1 HAVE_STRCPY=1\
> configure.local;;
*) echo HAVE___PROGNAME=true HAVE_ERR=1 HAVE_MEMMEM=1\
HAVE_MEMCHR=1 HAVE_PROGRAM_INVOCATION_SHORT_NAME=1\
HAVE_SECCOMP_FILTER=1 HAVE_SOCK_NONBLOCK=1\
HAVE_EXPLICIT_BZERO=1\
> configure.local;;
esac
fi
}
post_install() {
head -n16 article.c > COPYING
vlicense COPYING
}