Replaced busybox hwclock with util-linux hwclock for more functionality
Upgraded chrony to version 4.2 and fixed its runit build script Replaced $ARCH variable with $arch to cause gmp and db builds in base srction to build correctly Fixed descriptions in xcb-util-image and xcb-util-wm in xorg section Removed drm option in xorg/mesa and added llvm as a dependency
This commit is contained in:
parent
c5fad16d28
commit
2ac50eee2a
9 changed files with 20 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
||||||
app=busybox
|
app=busybox
|
||||||
version=1.27.2
|
version=1.27.2
|
||||||
build=1sml
|
build=2sml
|
||||||
homepage="https://www.busybox.net/"
|
homepage="https://www.busybox.net/"
|
||||||
download="https://www.busybox.net/downloads/busybox-1.27.2.tar.bz2"
|
download="https://www.busybox.net/downloads/busybox-1.27.2.tar.bz2"
|
||||||
requires="musl"
|
requires="musl"
|
||||||
|
@ -29,7 +29,7 @@ build() {
|
||||||
|
|
||||||
cd $pkg/bin
|
cd $pkg/bin
|
||||||
|
|
||||||
for f in ntpd hwclock passwd udhcpc udhcpd route ifconfig \
|
for f in ntpd passwd udhcpc udhcpd route ifconfig \
|
||||||
telnet telnetd tftp microcom netstat killall5 setfont \
|
telnet telnetd tftp microcom netstat killall5 setfont \
|
||||||
loadkmap wall ipcalc iostat brctl arp \
|
loadkmap wall ipcalc iostat brctl arp \
|
||||||
su login init chpst sv svc runsv runsvdir halt reboot poweroff getty \
|
su login init chpst sv svc runsv runsvdir halt reboot poweroff getty \
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
app=chrony
|
app=chrony
|
||||||
version=3.5
|
version=4.2
|
||||||
build=1sml
|
build=1sml
|
||||||
homepage='https://chrony.tuxfamily.org/'
|
homepage='https://chrony.tuxfamily.org/'
|
||||||
download='https://download.tuxfamily.org/chrony/chrony-3.5.tar.gz'
|
download='https://download.tuxfamily.org/chrony/chrony-4.2.tar.gz'
|
||||||
desc="Lightweight program to maintain accuracy of the real time clock via NTP"
|
desc="Lightweight program to maintain accuracy of the real time clock via NTP"
|
||||||
requires="nettle libcap"
|
requires="nettle libcap"
|
||||||
|
|
||||||
|
@ -18,19 +18,17 @@ build() {
|
||||||
--prefix="" \
|
--prefix="" \
|
||||||
--bindir=/bin \
|
--bindir=/bin \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--mandir=/share/man \
|
--mandir=/share/man
|
||||||
--without-readline \
|
|
||||||
--without-nss
|
|
||||||
|
|
||||||
make $MAKEFLAGS
|
make $MAKEFLAGS
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
cp $srcdir/chrony.conf $pkg/etc/
|
install -Dm 644 $srcdir/chrony.conf $pkg/etc/chrony.conf.new
|
||||||
# raspberry pi example
|
# raspberry pi example
|
||||||
cp $srcdir/chrony.conf.rpi $pkg/etc/
|
install -Dm 644 $srcdir/chrony.conf.rpi $pkg/etc/chrony.conf.rpi.new
|
||||||
cp $srcdir/README $pkg/etc/chrony.README
|
install -Dm 644 $srcdir/README $pkg/etc/chrony.README
|
||||||
|
|
||||||
mkdir -p $pkg/var/lib/chrony
|
mkdir -p $pkg/var/lib/chrony
|
||||||
|
|
||||||
|
@ -40,5 +38,5 @@ build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
bdfeb8a5d478ff575b5bff6f9d298fb1102c9d74f2636499e124a8d9273a9d8c2b9b51bd037ef7054fd12c02a8371160a486f08a2f0c8fa2b97ed0410a9f3cf0 chrony-3.5.tar.lz
|
7f946b27de605b3ebea62cf23916dfad77c99e8b2338ba239ede6b8216ce436b3d4d87770f371c8d8e006507c51d5c831b51f067957abd2935adfdec3f5aa67d chrony-4.2.tar.gz
|
||||||
"
|
"
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
PATH="/bin"
|
exec /bin/chronyd -n 2>&1
|
||||||
exec chronyd -n 2>&1
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ build() {
|
||||||
cd $app-$version
|
cd $app-$version
|
||||||
fixbuilddirpermissions
|
fixbuilddirpermissions
|
||||||
|
|
||||||
if [ "$ARCH" = "aarch64" ]; then
|
if [ "$arch" = "aarch64" ]; then
|
||||||
db_atomic=gcc-builtin
|
db_atomic=gcc-builtin
|
||||||
else
|
else
|
||||||
db_atomic=x86/gcc-assembly
|
db_atomic=x86/gcc-assembly
|
||||||
|
|
|
@ -15,7 +15,7 @@ build() {
|
||||||
fixbuilddirpermissions
|
fixbuilddirpermissions
|
||||||
|
|
||||||
printf "all:\n\ttrue\n\ninstall:\n\ttrue\n\n" > tests/Makefile.in
|
printf "all:\n\ttrue\n\ninstall:\n\ttrue\n\n" > tests/Makefile.in
|
||||||
[ "$ARCH" = "aarch64" ] && builddist="--build=aarch64-musl-linux"
|
[ "$arch" = "aarch64" ] && builddist="--build=aarch64-musl-linux"
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix="" \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
app=util-linux
|
app=util-linux
|
||||||
version=2.33
|
version=2.33
|
||||||
build=2sml
|
build=3sml
|
||||||
homepage="https://github.com/karelzak/util-linux"
|
homepage="https://github.com/karelzak/util-linux"
|
||||||
download="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.33/util-linux-2.33.tar.xz"
|
download="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.33/util-linux-2.33.tar.xz"
|
||||||
desc="a huge collection of essential utilities"
|
desc="a huge collection of essential utilities"
|
||||||
|
@ -25,7 +25,7 @@ build() {
|
||||||
--disable-silent-rules \
|
--disable-silent-rules \
|
||||||
--disable-nls --disable-fsck\
|
--disable-nls --disable-fsck\
|
||||||
--enable-libmount-support-mtab \
|
--enable-libmount-support-mtab \
|
||||||
--disable-fdformat --disable-hwclock --disable-switch-root \
|
--disable-fdformat --disable-switch-root \
|
||||||
--disable-kill --disable-login --disable-sulogin --disable-su\
|
--disable-kill --disable-login --disable-sulogin --disable-su\
|
||||||
--disable-more --disable-pg --disable-agetty \
|
--disable-more --disable-pg --disable-agetty \
|
||||||
--without-systemd --disable-wdctl --enable-libuuid \
|
--without-systemd --disable-wdctl --enable-libuuid \
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
app=mesa
|
app=mesa
|
||||||
version=20.1.4
|
version=20.1.4
|
||||||
build=1sml
|
build=2sml
|
||||||
homepage="https://www.mesa3d.org/"
|
homepage="https://www.mesa3d.org/"
|
||||||
download="https://archive.mesa3d.org/mesa-20.1.4.tar.xz"
|
download="https://archive.mesa3d.org/mesa-20.1.4.tar.xz"
|
||||||
desc="An open-source implementation of the OpenGL specification"
|
desc="An open-source implementation of the OpenGL specification"
|
||||||
requires="gcc-libs expat libxml2 libdrm libx11 libxrandr libxdamage libxshmfence libxxf86vm libvdpau "
|
requires="gcc-libs expat libxml2 llvm libdrm libx11 libxrandr libxdamage libxshmfence libxxf86vm libvdpau"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
mkandenterbuilddir
|
mkandenterbuilddir
|
||||||
|
@ -23,7 +23,7 @@ build() {
|
||||||
|
|
||||||
if [ "$arch" = "aarch64" ]; then
|
if [ "$arch" = "aarch64" ]; then
|
||||||
dridrivers=""
|
dridrivers=""
|
||||||
galliumdrivers="vc4,v3d,kmsro"
|
galliumdrivers="v3d,vc4,kmsro"
|
||||||
|
|
||||||
elif [ "$arch" = "x86_64" ]; then
|
elif [ "$arch" = "x86_64" ]; then
|
||||||
dridrivers="i915,i965,nouveau,r100,r200,swrast"
|
dridrivers="i915,i965,nouveau,r100,r200,swrast"
|
||||||
|
@ -38,7 +38,7 @@ build() {
|
||||||
-Dbuildtype=release \
|
-Dbuildtype=release \
|
||||||
-Ddri-drivers="$dridrivers" \
|
-Ddri-drivers="$dridrivers" \
|
||||||
-Dgallium-drivers="$galliumdrivers" \
|
-Dgallium-drivers="$galliumdrivers" \
|
||||||
-Dplatforms="x11,drm,wayland" \
|
-Dplatforms="x11,wayland" \
|
||||||
-Dgallium-nine=false \
|
-Dgallium-nine=false \
|
||||||
-Degl=true \
|
-Degl=true \
|
||||||
-Dgles1=false \
|
-Dgles1=false \
|
||||||
|
|
|
@ -3,7 +3,7 @@ version=0.4.0
|
||||||
build=1sml
|
build=1sml
|
||||||
homepage="https://xcb.freedesktop.org/"
|
homepage="https://xcb.freedesktop.org/"
|
||||||
download="https://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2"
|
download="https://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2"
|
||||||
desc="Utility libraries for XC Binding - Port of Xlib's XImage and XShmImage functions"
|
desc="Utility libraries for XC Binding"
|
||||||
requires="libxcb xcb-util"
|
requires="libxcb xcb-util"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
|
@ -3,7 +3,7 @@ version=0.4.1
|
||||||
build=1sml
|
build=1sml
|
||||||
homepage="https://xcb.freedesktop.org/"
|
homepage="https://xcb.freedesktop.org/"
|
||||||
download="https://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2"
|
download="https://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2"
|
||||||
desc="Utility libraries for XC Binding - client and window-manager helpers for ICCCM"
|
desc="Utility libraries for XC Binding"
|
||||||
requires="libxcb"
|
requires="libxcb"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
Loading…
Reference in a new issue