diff --git a/base/bison/bison.SMBuild b/base/bison/bison.SMBuild index 8054ee1..109df15 100755 --- a/base/bison/bison.SMBuild +++ b/base/bison/bison.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=bison version=3.1 -build=3sml +build=1sml homepage="https://www.gnu.org/software/bison/bison.html" download="https://ftp.gnu.org/gnu/bison/bison-$version.tar.xz" desc="parser generator similar to yacc" @@ -18,7 +18,9 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr \ + --bindir=/bin \ + --disable-nls make make install DESTDIR=$pkg diff --git a/base/c-ares/c-ares.SMBuild b/base/c-ares/c-ares.SMBuild index ffd6127..c7f49ee 100755 --- a/base/c-ares/c-ares.SMBuild +++ b/base/c-ares/c-ares.SMBuild @@ -1,6 +1,6 @@ # Maintainer: PktSurf app=c-ares -version=1.16.1 +version=1.19.1 build=1sml homepage="https://c-ares.haxx.se/" download="https://c-ares.haxx.se/download/c-ares-$version.tar.gz" @@ -18,17 +18,17 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-shared make make install DESTDIR=$pkg - cp $srcdir/LICENSE $pkgdocs/ + cp LICENSE.md $pkgdocs/ mkfinalpkg } sha512sums=" -34e15bb43478caf302a721b080ce1e955b8d9e91145330214c456a0f2b157b7f759eb450a0e8ce94089468347a51bbb0f457de9a889541fc0f5e8fa59f9a2d58 c-ares-1.16.1.tar.lz -" +d0eff8bd3cba8d1ecb9d19761eda0899efc4d0f29d8cc13757fe4154601cab5a5aafad9b40a9c4117fbe1964c493a58c389a274246f8fe3ac34fd7e4fadaafb6 c-ares-1.19.1.tar.lz +" \ No newline at end of file diff --git a/base/ca-certificates/ca-certificates.SMBuild b/base/ca-certificates/ca-certificates.SMBuild index 16eafb7..04428e3 100755 --- a/base/ca-certificates/ca-certificates.SMBuild +++ b/base/ca-certificates/ca-certificates.SMBuild @@ -21,25 +21,25 @@ build() { # Update to certdata.txt from $srcdir: xzcat $srcdir/certdata-${version}.txt.xz > mozilla/certdata.txt - mkdir -p $pkg/share/ca-certificates $pkg/bin $pkg/usr/sbin + mkdir -p $pkg/usr/share/ca-certificates $pkg/bin $pkg/usr/sbin make - make install DESTDIR=$pkg CERTSDIR=/share/ca-certificates + make install DESTDIR=$pkg CERTSDIR=/usr/share/ca-certificates cp docs/copyright $pkgdocs/COPYRIGHT mkdir -p $pkg/etc/ca-certificates/update.d printf "# Automatically generated by $app-$version \n#\n" \ > $pkg/etc/ca-certificates.conf.new - ( cd $pkg/share/ca-certificates + ( cd $pkg/usr/share/ca-certificates find . -name '*.crt' | sort | cut -b3- ) >> $pkg/etc/ca-certificates.conf.new install -Dm 755 $srcdir/setup.11.cacerts $pkg/var/log/setup/setup.11.cacerts - install -Dm 644 sbin/update-ca-certificates.8 $pkg/share/man/man8/update-ca-certificates.8 + install -Dm 644 sbin/update-ca-certificates.8 $pkg/usr/share/man/man8/update-ca-certificates.8 # Why do people hardcode paths in Makefiles! mv $pkg/usr/sbin/* $pkg/bin/ - rm -rf $pkg/usr + rmdir $pkg/usr/sbin mkfinalpkg } diff --git a/base/ca-certificates/certdata-20221205.txt.xz b/base/ca-certificates/certdata-20221205.txt.xz new file mode 100644 index 0000000..8e06d89 Binary files /dev/null and b/base/ca-certificates/certdata-20221205.txt.xz differ diff --git a/base/ccache/ccache.SMBuild b/base/ccache/ccache.SMBuild index f4068a5..78065b9 100755 --- a/base/ccache/ccache.SMBuild +++ b/base/ccache/ccache.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=ccache version=3.7.9 -build=2sml +build=1sml homepage="https://ccache.dev/" download="https://github.com/ccache/ccache/releases/download/v$version/ccache-$version.tar.xz" desc="Compiler cache to speed up re-compilation of C/C++ code by caching previous compiles" @@ -17,9 +17,10 @@ prepbuilddir() { } build() { - LDFLAGS="-static" \ ./configure \ - --prefix= + --prefix=/usr \ + --sysconfdir=/etc \ + --bindir=/bin make make install DESTDIR=$pkg diff --git a/base/coreutils/coreutils.SMBuild b/base/coreutils/coreutils.SMBuild index 3abf4e7..1f2462b 100755 --- a/base/coreutils/coreutils.SMBuild +++ b/base/coreutils/coreutils.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=coreutils version=8.32 -build=3sml +build=1sml homepage="https://www.gnu.org/software/coreutils/coreutils.html" download="http://ftp.gnu.org/gnu/coreutils/coreutils-$version.tar.xz" desc="Core GNU utilities" @@ -22,7 +22,7 @@ build() { FORCE_UNSAFE_CONFIGURE=1 \ LDFLAGS="-static" \ ./configure \ - --prefix= \ + --prefix=/usr \ --bindir=/bin \ --libexecdir=/lib \ --without-gmp diff --git a/base/cpio/cpio.SMBuild b/base/cpio/cpio.SMBuild index 37704c4..a8d4a9e 100755 --- a/base/cpio/cpio.SMBuild +++ b/base/cpio/cpio.SMBuild @@ -19,7 +19,9 @@ prepbuilddir() { build() { CFLAGS+=" -fcommon" \ ./configure \ - --prefix= + --prefix=/usr \ + --bindir=/bin \ + --disable-nls make make install DESTDIR=$pkg diff --git a/base/crda/crda.SMBuild b/base/crda/crda.SMBuild index 1b397d9..2daa2c4 100755 --- a/base/crda/crda.SMBuild +++ b/base/crda/crda.SMBuild @@ -1,9 +1,9 @@ # Maintainer: PktSurf app=crda version=4.14 -build=2sml +build=1sml homepage="https://wireless.wiki.kernel.org/en/developers/regulatory/crda" -requires="libnl libgcrypt python-m2crypto" +requires="libnl libgcrypt python-m2crypto wireless-regdb" desc="Udev wrapper for communicating between kernel and userspace" prepbuilddir() { @@ -24,8 +24,8 @@ prepbuilddir() { } build() { - make PREFIX="/" SBINDIR="/bin" - make PREFIX="/" SBINDIR="/bin" install DESTDIR=$pkg + make PREFIX="/usr" SBINDIR="/bin" + make PREFIX="/usr" SBINDIR="/bin" install DESTDIR=$pkg cp LICENSE $pkgdocs/ diff --git a/base/cryptsetup/cryptsetup.SMBuild b/base/cryptsetup/cryptsetup.SMBuild index 679bbc5..d41cbbc 100755 --- a/base/cryptsetup/cryptsetup.SMBuild +++ b/base/cryptsetup/cryptsetup.SMBuild @@ -19,10 +19,9 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ - --sbindir=/bin \ - --libdir=/lib \ - --sysconfdir=/etc + --prefix=/usr \ + --sysconfdir=/etc \ + --sbindir=/bin make make install DESTDIR=$pkg diff --git a/base/curl/cacert-fetch.sh b/base/curl/cacert-fetch.sh old mode 100755 new mode 100644 diff --git a/base/curl/curl.SMBuild b/base/curl/curl.SMBuild index cc78d99..062086e 100755 --- a/base/curl/curl.SMBuild +++ b/base/curl/curl.SMBuild @@ -19,8 +19,9 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --sysconfdir=/etc \ + --bindir=/bin \ --with-libssh2 \ --without-ca-bundle \ --with-ca-path=/etc/ssl/certs \ diff --git a/base/db/db.SMBuild b/base/db/db.SMBuild index 511487c..29d2dae 100755 --- a/base/db/db.SMBuild +++ b/base/db/db.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=db version=6.2.23 -build=2sml +build=1sml homepage="https://www.oracle.com/database/technologies/related/berkeleydb.html" download="http://download.oracle.com/berkeley-db/db-$version.tar.gz" desc="Berkeley embedded database library" @@ -19,11 +19,7 @@ prepbuilddir() { } build() { - if [[ $arch = aarch64 ]]; then - db_atomic=gcc-builtin - else - db_atomic=x86/gcc-assembly - fi + db_atomic=x86/gcc-assembly cd build_unix @@ -32,7 +28,8 @@ build() { db_cv_mmap_extend=yes \ db_cv_atomic="$db_atomic" \ ../dist/configure \ - --prefix= \ + --prefix=/usr \ + --bindir=/bin \ --enable-shared \ --disable-static \ --enable-dbm \ diff --git a/base/dcron/dcron.SMBuild b/base/dcron/dcron.SMBuild index d0b41d6..134fcb1 100755 --- a/base/dcron/dcron.SMBuild +++ b/base/dcron/dcron.SMBuild @@ -1,10 +1,10 @@ # Maintainer: PktSurf app=dcron version=4.5 -build=2sml +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" +desc="Dillons cron daemon" requires="musl" prepbuilddir() { @@ -28,9 +28,9 @@ build() { install -Dm 4711 crontab $pkg/bin/crontab install -Dm 755 $srcdir/run-parts $pkg/bin/run-parts - install -Dm 644 crontab.1 $pkg/share/man/man1/crontab.1 - install -Dm 644 crond.8 $pkg/share/man/man8/crond.8 - install -Dm 644 $srcdir/run-parts.8 $pkg/share/man/man8/run-parts.8 + 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} diff --git a/base/desktop-file-utils/desktop-file-utils.SMBuild b/base/desktop-file-utils/desktop-file-utils.SMBuild index 4846ed7..4d82e8d 100755 --- a/base/desktop-file-utils/desktop-file-utils.SMBuild +++ b/base/desktop-file-utils/desktop-file-utils.SMBuild @@ -20,7 +20,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr \ + --bindir=/bin make make install DESTDIR=$pkg diff --git a/base/dmidecode/dmidecode.SMBuild b/base/dmidecode/dmidecode.SMBuild index 9f344f2..05a72cc 100755 --- a/base/dmidecode/dmidecode.SMBuild +++ b/base/dmidecode/dmidecode.SMBuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { make - make install DESTDIR=$pkg prefix= mandir="/share/man" sbindir= + make install DESTDIR=$pkg prefix=/usr sbindir=/bin mandir="/usr/share/man" cp LICENSE $pkgdocs/ diff --git a/base/ed/ed.SMBuild b/base/ed/ed.SMBuild index a283996..494a2ae 100755 --- a/base/ed/ed.SMBuild +++ b/base/ed/ed.SMBuild @@ -18,7 +18,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr \ + --bindir=/bin make CFLAGS="$CFLAGS" make install DESTDIR=$pkg diff --git a/base/enet/enet.SMBuild b/base/enet/enet.SMBuild index 759e348..18253eb 100755 --- a/base/enet/enet.SMBuild +++ b/base/enet/enet.SMBuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-static=no make diff --git a/base/exfat-utils/exfat-utils.SMBuild b/base/exfat-utils/exfat-utils.SMBuild index 81511cc..044ad88 100755 --- a/base/exfat-utils/exfat-utils.SMBuild +++ b/base/exfat-utils/exfat-utils.SMBuild @@ -19,7 +19,8 @@ prepbuilddir() { build() { CFLAGS+=" -std=c99" \ ./configure \ - --prefix= \ + --prefix=/usr \ + --bindir=/bin \ --sbindir=/bin make diff --git a/base/exiv2/exiv2.SMBuild b/base/exiv2/exiv2.SMBuild index 43bc3ba..43c4832 100755 --- a/base/exiv2/exiv2.SMBuild +++ b/base/exiv2/exiv2.SMBuild @@ -19,7 +19,8 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX= \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_BINDIR=/bin \ -DCMAKE_INSTALL_LIBDIR=lib make diff --git a/base/expat/expat.SMBuild b/base/expat/expat.SMBuild index ee4fbfc..cfb3fad 100755 --- a/base/expat/expat.SMBuild +++ b/base/expat/expat.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=expat version=2.5.0 -build=2sml +build=1sml homepage="https://downloads.sourceforge.net/project/expat/" download="https://downloads.sourceforge.net/project/expat/expat/$version/expat-$version.tar.bz2" desc="C library for parsing XML" @@ -18,7 +18,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ + --bindir=/bin \ --disable-static make diff --git a/base/faad2/faad2.SMBuild b/base/faad2/faad2.SMBuild index e896020..a708f24 100755 --- a/base/faad2/faad2.SMBuild +++ b/base/faad2/faad2.SMBuild @@ -19,7 +19,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ + --bindir=/bin \ --disable-static make diff --git a/base/fdk-aac/fdk-aac.SMBuild b/base/fdk-aac/fdk-aac.SMBuild index fe8e587..4b8b30e 100755 --- a/base/fdk-aac/fdk-aac.SMBuild +++ b/base/fdk-aac/fdk-aac.SMBuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-shared \ --disable-static diff --git a/base/findutils/findutils.SMBuild b/base/findutils/findutils.SMBuild index 38e4ef6..ab1398e 100755 --- a/base/findutils/findutils.SMBuild +++ b/base/findutils/findutils.SMBuild @@ -22,14 +22,15 @@ prepbuilddir() { build() { LDFLAGS="-static" \ ./configure \ - --prefix= \ - --libexecdir=/lib + --prefix=/usr \ + --bindir=/bin \ + --libexecdir=/libexec make make install DESTDIR=$pkg # Provided by mlocate - rm -f $pkg/bin/{locate,updatedb} $pkg/share/man/man1/{locate.1,updatedb.1} + rm -f $pkg/bin/{locate,updatedb} $pkg/usr/share/man/man1/{locate.1,updatedb.1} cp COPYING $pkgdocs/ diff --git a/base/flex/flex.SMBuild b/base/flex/flex.SMBuild index e1391bc..eed4361 100755 --- a/base/flex/flex.SMBuild +++ b/base/flex/flex.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=flex version=2.6.4 -build=3sml +build=1sml homepage="https://github.com/westes/flex" download="https://github.com/westes/flex/archive/refs/tags/v$version.tar.gz" desc="fast lexical analyzer generator" @@ -19,8 +19,10 @@ prepbuilddir() { build() { CPPFLAGS="$CFLAGS -DSTDC_HEADERS" \ ./configure \ - --prefix= \ - --disable-static + --prefix=/usr \ + --bindir=/bin \ + --disable-static \ + --disable-nls make make install DESTDIR=$pkg diff --git a/base/fmt/fmt.SMBuild b/base/fmt/fmt.SMBuild index 9cb65e9..13b7f3e 100755 --- a/base/fmt/fmt.SMBuild +++ b/base/fmt/fmt.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=fmt version=8.1.0 -build=2sml +build=1sml homepage="https://github.com/fmtlib/fmt" download="https://github.com/fmtlib/fmt/archive/refs/tags/$version.tar.gz" desc="Formatting library for C++" @@ -19,8 +19,8 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ - -DCMAKE_INSTALL_LIBDIR="lib" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_SHARED_LIBS=ON \ -DFMT_TEST=OFF \ -Wno-dev diff --git a/base/zip/zip.SMBuild b/base/zip/zip.SMBuild index fe85c8e..e310ee2 100755 --- a/base/zip/zip.SMBuild +++ b/base/zip/zip.SMBuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=zip version=30 -build=2sml +build=1sml homepage="http://www.info-zip.org/Zip.html" download="https://downloads.sourceforge.net/infozip/zip$version.tar.gz" desc="Compression and file packaging utility" @@ -20,7 +20,7 @@ build() { make -f unix/Makefile generic_gcc \ CFLAGS="$CFLAGS" - make prefix="$pkg" -f unix/Makefile install MANDIR="$pkg/share/man/man1" + make prefix="$pkg" -f unix/Makefile install MANDIR="$pkg/usr/share/man/man1" cp LICENSE $pkgdocs/ diff --git a/base/zlib/zlib.SMBuild b/base/zlib/zlib.SMBuild index fd3ebad..8341b51 100755 --- a/base/zlib/zlib.SMBuild +++ b/base/zlib/zlib.SMBuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/zsh/zsh.SMBuild b/base/zsh/zsh.SMBuild index 7f52cff..d1682db 100755 --- a/base/zsh/zsh.SMBuild +++ b/base/zsh/zsh.SMBuild @@ -20,7 +20,8 @@ build() { sed -i '/autoheader/d' Makefile.in ./configure \ - --prefix= \ + --prefix=/usr \ + --bindir=/bin \ --enable-libc-musl make diff --git a/base/zstd/zstd.SMBuild b/base/zstd/zstd.SMBuild index ebc90e5..b8e503b 100755 --- a/base/zstd/zstd.SMBuild +++ b/base/zstd/zstd.SMBuild @@ -20,8 +20,9 @@ build() { mkdir -p smbuild && cd smbuild cmake ../build/cmake \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX= \ - -DCMAKE_INSTALL_LIBDIR="lib" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_BINDIR=/bin \ + -DCMAKE_INSTALL_LIBDIR=lib \ -DZSTD_ZLIB_SUPPORT=ON \ -DZSTD_LZMA_SUPPORT=ON \ -DZSTD_LZ4_SUPPORT=ON \