Renamed .SMBuild files to smbuild for simplicity Added musl-fts, musl-obstack, glslang, python-glad, libptytty, libmilter, elfutils and fuse to base section build list Discarded fuse2 and fuse3 from base section Temporarily discarded slapt-get, syslinux, p7zip, acpid, libelf-compat, gnu-eif, libtirpc, mozilla-nss, lua53, qpdf, kernel-source and signify from base section build list Disabled nls and made amends to base/e2fsprogs Upgraded base/git to 2.46.2 Upgraded extra/gnumeric to 1.12.57 Disabled nls in base/gnutls, extra/dia Disabled a patch and made amends in base/llvm Fixed configure.local file in base/mandoc Upgraded base/rust to 1.79 Fixed a ton of build files to use build prefix as /usr and miscellaneous changes Discarded extra/bluez,blueman,scrcpy,adafruit-io Added tomb to extra Added new build option to extra/libass Upgraded extra/mpv to 0.37.0 Disabled tests in gtk/gdk-pixbuf Upgraded gtk/goffice to 0.10.57 Added gtk-doc to gtk section Fixed build options in gtk/gtk2 Added new patches to gtk/gtk3 Added gtksourceview to gtk section Added vulkan-headers to xorg section Upgraded xorg/mesa to 23.1.9 Added libplacebo to xorg section Fixed build stuff in xorg/glew
54 lines
2.3 KiB
Bash
54 lines
2.3 KiB
Bash
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=dcron
|
|
version=4.5
|
|
build=1sml
|
|
homepage="http://www.jimpryor.net/linux/dcron.html"
|
|
download="http://www.jimpryor.net/linux/releases/dcron-$version.tar.gz"
|
|
desc="Dillons cron daemon"
|
|
requires="musl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
applypatch $srcdir/0002-README-var-spool-cron-crontabs-root.patch
|
|
applypatch $srcdir/0006-Fixed-a-bug-whereby-syncs-killed-all-waiting-jobs.patch
|
|
applypatch $srcdir/0007-Update-main.c.patch
|
|
applypatch $srcdir/crontab.c.O_EXCL.diff
|
|
}
|
|
|
|
build() {
|
|
make PREFIX=/usr SBINDIR=/usr/bin CRONTAB_GROUP=root
|
|
|
|
install -Dm 755 crond $pkg/usr/bin/crond
|
|
install -Dm 4711 crontab $pkg/usr/bin/crontab
|
|
install -Dm 755 $srcdir/run-parts $pkg/usr/bin/run-parts
|
|
|
|
install -Dm 644 crontab.1 $pkg/usr/share/man/man1/crontab.1
|
|
install -Dm 644 crond.8 $pkg/usr/share/man/man8/crond.8
|
|
install -Dm 644 $srcdir/run-parts.8 $pkg/usr/share/man/man8/run-parts.8
|
|
|
|
# Create some other stuff we need
|
|
mkdir -p $pkg/etc/cron.{hourly,daily,weekly,monthly}
|
|
install -dm 0751 $pkg/var/spool/cron
|
|
install -dm 750 $pkg/var/spool/cron/crontabs
|
|
install -dm 750 $pkg/var/spool/cron/cronstamps
|
|
install -Dm 600 $srcdir/crontab.root $pkg/var/spool/cron/crontabs/root.new
|
|
|
|
# dcron will whine about "unable to scan this directory", so we'll create it
|
|
mkdir -p $pkg/etc/cron.d
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
19e645ecf073f38539cce45daf82e4d1eac58fbba514e18c9c4e8b9976dd9557ece7dcb2ad3c90bc0b05ec732f7fbb76617a97ec572cc28625398935734ac56a dcron-4.5.tar.lz
|
|
687ba63afc4bf6028a7a4f0debfcb8b8758aaacd1ddb317136d55dfae7c57c572d81edf340b4b36476280a38b71b740f23e9f56a02a95ebd0f0aacdcba735c59 0002-README-var-spool-cron-crontabs-root.patch
|
|
faf6ecee8f678298b1a8cd27f42f42e3e3396062d73ea4bfff14f930ae71e99613354d9ec234407936e19c05b1de9cec46fffbf6df9ef71d4294d8b32bdad74d 0006-Fixed-a-bug-whereby-syncs-killed-all-waiting-jobs.patch
|
|
534628dfaad83a0d746731b67756fff3dd6a5b305efb07e00e3a7acb6bac9138e7ee3cae22d1314ee3041b22b9dd3574c1342e26af39198d6d0685964318876d 0007-Update-main.c.patch
|
|
a56862ea0fc1aa2f5fa77c2d341c2e35bb5d2ac5d9942c3dee25662eac6c9078fdd293835ec471ece22b2add4ae21db596cb0d41fb765ee92fb9aa53a4252287 crontab.c.O_EXCL.diff
|
|
"
|