void-packages/srcpkgs/schilytools/template
Leah Neukirchen 2ea7c2f562 schilytools: add ved.
RIP Jörg Schilling (1955-2021)
2021-10-23 18:13:58 +02:00

82 lines
2.4 KiB
Bash

# Template file for 'schilytools'
pkgname=schilytools
version=2021.09.18
revision=2
wrksrc="schily-${version//./-}"
build_style=meta
makedepends="acl-devel attr-devel e2fsprogs-devel m4"
depends="sccs sdd sfind smake star ved"
short_desc="Schily's portable tools"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="CDDL-1.0"
homepage="https://sourceforge.net/projects/schilytools/"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/schily-${version//./-}.tar.bz2"
checksum=7c93f43d22c6e3de0eafe018ceb26ddd5cc6c543dc301f307d1e6ca313248aa4
nocross=yes # configure + re-builds with itself
do_build() {
make ${makejobs} CC="$CC" COPTX="$CFLAGS" LDOPTX="$LDFLAGS" INS_BASE=/usr
make ${makejobs} -C ved CC="$CC" COPTX="$CFLAGS" LDOPTX="$LDFLAGS" INS_BASE=/usr
make -C sccs clean
make -C sccs CC="$CC" COPTX="$CFLAGS" LDOPTX="$LDFLAGS" INS_BASE=/usr/libexec/sccs
}
sccs_package() {
short_desc+=" - SCCS"
pkg_install() {
make install -C sccs DESTDIR="$PKGDESTDIR" INS_BASE=/usr/libexec/sccs
vmkdir usr/bin
vmkdir usr/share
rm -f ${PKGDESTDIR}/usr/libexec/sccs/share/man/man?/[!s]*
mv ${PKGDESTDIR}/usr/libexec/sccs/share/man ${PKGDESTDIR}/usr/share
rm -rf ${PKGDESTDIR}/usr/libexec/sccs/bin
ln -sfr ${PKGDESTDIR}/usr/libexec/sccs/ccs/bin/sccs ${PKGDESTDIR}/usr/bin/sccs
vlicense CDDL.Schily.txt
}
}
sdd_package() {
short_desc+=" - sdd"
pkg_install() {
make install -C sdd DESTDIR="$PKGDESTDIR" INS_BASE=/usr
vlicense CDDL.Schily.txt
}
}
sfind_package() {
short_desc+=" - sfind"
pkg_install() {
make install -C sfind DESTDIR="$PKGDESTDIR" INS_BASE=/usr
vlicense CDDL.Schily.txt
}
}
smake_package() {
short_desc+=" - smake"
pkg_install() {
make install -C smake DESTDIR="$PKGDESTDIR" INS_BASE=/usr
vlicense CDDL.Schily.txt
}
}
star_package() {
short_desc+=" - star"
conf_files="/etc/default/star"
alternatives="
pax:pax:/usr/bin/spax
pax:pax.1:/usr/share/man/man1/spax.1
"
pkg_install() {
make install -C star DESTDIR="$PKGDESTDIR" INS_BASE=/usr SYMLINKS='suntar scpio spax'
rm -f ${PKGDESTDIR}/usr/share/man/man1/gnutar.1
rm -f ${PKGDESTDIR}/usr/share/man/man1/ustar.1
rm -f ${PKGDESTDIR}/usr/share/man/man1/gnutar.1
rm -f ${PKGDESTDIR}/usr/share/man/man1/*[!1]
rm -f ${PKGDESTDIR}/usr/share/man/man5/*[!5]
rm -rf ${PKGDESTDIR}/usr/share/doc/
vlicense CDDL.Schily.txt
}
}
ved_package() {
short_desc+=" - ved"
pkg_install() {
make install -C ved DESTDIR="$PKGDESTDIR" INS_BASE=/usr
vlicense CDDL.Schily.txt
}
}