40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'sam'
|
|
pkgname=sam
|
|
version=20190427
|
|
revision=1
|
|
_githash=5893679bbbab2f50ceb6ef0805e4bb63f5f51df8
|
|
wrksrc="${pkgname}-${_githash}"
|
|
makedepends="libXft-devel libXi-devel libXt-devel"
|
|
short_desc="Screen editor with structural regular expressions"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT-like"
|
|
homepage="http://www.deadpixi.com/an-updated-version-of-sam"
|
|
distfiles="https://github.com/deadpixi/${pkgname}/archive/${_githash}.tar.gz"
|
|
checksum=d7b935c0bf91bf9678dedefdb0bca3d159fd518cd255fa55c4e61936201f0741
|
|
disable_parallel_build=yes
|
|
CFLAGS="-std=c99"
|
|
|
|
post_extract() {
|
|
sed -i 's/ -sf / -sfr /' doc/Makefile
|
|
sed -i '/Straddc/s/int/wchar_t/g' sam/sam.h
|
|
}
|
|
do_build() {
|
|
local use64bits=0
|
|
if [ "$XBPS_TARGET_WORDSIZE" = "64" ]; then
|
|
use64bits=1
|
|
fi
|
|
|
|
make ${makejobs} CC="${CC} ${CFLAGS}" DESTDIR=/usr LDFLAGS="$LDFLAGS" \
|
|
INCLUDES=-I${XBPS_CROSS_BASE}/usr/include/freetype2 \
|
|
RXSAMNAME=rsam TERMNAME=/usr/bin/samterm USE64BITS=${use64bits}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
vmkdir usr/share/man/man1
|
|
make install DESTDIR=${DESTDIR}/usr
|
|
|
|
vlicense LICENSE
|
|
vdoc doc/se.ps
|
|
vdoc doc/sam.tut.ms
|
|
}
|