Changes in base section

-> Upgraded boost to 1.86.0, fixed broken symlinks
-> Discarded chrony raspberry pi conf example and README
-> Allow cmake to install elf binaries in /usr instead of /usr/bin
   temporarily, also enable options to link cmake against system deps
-> Removed aarch64 raspberry pi 64 build option in fftw and flac
-> Disable generation of nls files in gawk
-> Added /usr to some build files
This commit is contained in:
PktSurf 2024-10-16 23:06:11 +05:30
parent 659ac81257
commit 06bd44b23a
8 changed files with 40 additions and 45 deletions

View file

@ -1,7 +1,6 @@
# Maintainer: PktSurf <smlinux@pktsurf.in> # Maintainer: PktSurf <smlinux@pktsurf.in>
app=boost app=boost
sversion=1_81_0 version=1.86.0
version=1.81.0
build=1sml build=1sml
homepage="https://www.boost.org/" homepage="https://www.boost.org/"
download="https://boostorg.jfrog.io/artifactory/main/release/$version/source/boost_$sversion.tar.bz2" download="https://boostorg.jfrog.io/artifactory/main/release/$version/source/boost_$sversion.tar.bz2"
@ -10,10 +9,10 @@ desc="Huge collection of free peer-reviewed portable C++ source libraries"
prepbuilddir() { prepbuilddir() {
mkandenterbuilddir mkandenterbuilddir
rm -rf "$app"_"$sversion" rm -rf $app-$version
tar xf $srcdir/"$app"_"$sversion".tar.?z* tar xf $srcdir/$app-$version.tar.?z*
cd "$app"_"$sversion" cd $app-$version
# Our fixbuilddirpermissions is disliked by a couple of files in here # Our fixbuilddirpermissions is disliked by a couple of files in here
chown -R root.root . chown -R root.root .
touch ."$app-$version.extraction.complete" touch ."$app-$version.extraction.complete"
@ -28,10 +27,10 @@ build() {
cflags=-fno-strict-aliasing --without-graph_parallel --without-mpi" cflags=-fno-strict-aliasing --without-graph_parallel --without-mpi"
./b2 $build_options ./b2 $build_options
./b2 $build_options install ./b2 $build_options --bindir="$pkg"/bin --includedir="$pkg"/usr/include --libdir="$pkg"/usr/lib install
install -Dm 755 b2 $pkg/bin/b2 install -Dm 755 b2 $pkg/bin/b2
( cd $pkg ; ln -s b2 bjam ) ( cd $pkg/bin ; ln -s b2 bjam )
cp LICENSE_1_0.txt $pkgdocs/LICENSE cp LICENSE_1_0.txt $pkgdocs/LICENSE
@ -39,5 +38,5 @@ build() {
} }
sha512sums=" sha512sums="
8f18972314e8dd5c952825fc52ca49d17b0e0b31db12bcc1cd0ba42c2d71c4f6ce5f5062fdbb65db029ec2c58ca93a32c32d0cdce62329556200dc8650a03fbf boost_1_81_0.tar.gz f204b7a109c188f61ac1edea9e2284e9ec5c455facc512e3d5a8d687ac03eb56e6593361cc62a41082ca8a60c4d80dea38bf4e8cb293137577e506ea1ba41a97 boost-1.86.0.tar.lz
" "

View file

@ -18,10 +18,9 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix=/usr \
--bindir=/bin \ --bindir=/bin \
--sbindir=/bin \ --sbindir=/bin \
--mandir=/share/man \
--with-user=chrony --with-user=chrony
make $MAKEFLAGS make $MAKEFLAGS
@ -30,12 +29,7 @@ build() {
cp COPYING $pkgdocs/ cp COPYING $pkgdocs/
install -Dm 644 $srcdir/chrony.conf $pkg/etc/chrony.conf.new install -Dm 644 $srcdir/chrony.conf $pkg/etc/chrony.conf.new
# raspberry pi example
install -Dm 644 $srcdir/chrony.conf.rpi $pkg/etc/chrony.conf.rpi.new
install -Dm 644 $srcdir/README $pkg/etc/chrony.README
mkdir -p $pkg/var/lib/chrony mkdir -p $pkg/var/lib/chrony
preprunitservice -s chrony -d preprunitservice -s chrony -d
mkfinalpkg mkfinalpkg
@ -43,4 +37,4 @@ build() {
sha512sums=" sha512sums="
6c8c39864dbfcfac8e6a9c3a09fbe91c5f697d987eb044bf241c78b4654b55e968544cebfe644563b199cc7632a14aea1da4cb07b7ebe60f6a152334cf23af9a chrony-4.4.tar.lz 6c8c39864dbfcfac8e6a9c3a09fbe91c5f697d987eb044bf241c78b4654b55e968544cebfe644563b199cc7632a14aea1da4cb07b7ebe60f6a152334cf23af9a chrony-4.4.tar.lz
" "

View file

@ -1,7 +1,7 @@
# Maintainer: PktSurf <smlinux@pktsurf.in> # Maintainer: PktSurf <smlinux@pktsurf.in>
app=chrpath app=chrpath
version=0.16 version=0.16
build=2sml build=1sml
homepage="https://chrpath.alioth.debian.org/" homepage="https://chrpath.alioth.debian.org/"
download="https://alioth.debian.org/frs/download.php/latestfile/813/chrpath-$version.tar.gz" download="https://alioth.debian.org/frs/download.php/latestfile/813/chrpath-$version.tar.gz"
desc="Program to modify rpath aka dynamic library load path of binaries" desc="Program to modify rpath aka dynamic library load path of binaries"
@ -18,7 +18,8 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix= --prefix=/usr \
--bindir=/bin
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -6,6 +6,7 @@ homepage="http://www.cmake.org"
download="https://github.com/Kitware/CMake/releases/download/v$version/cmake-$version.tar.gz" download="https://github.com/Kitware/CMake/releases/download/v$version/cmake-$version.tar.gz"
desc="Cross-platform, open-source make system" desc="Cross-platform, open-source make system"
requires="gcc-libs openssl libunistring libidn2" requires="gcc-libs openssl libunistring libidn2"
ignoreusrbin=1
prepbuilddir() { prepbuilddir() {
mkandenterbuilddir mkandenterbuilddir
@ -21,13 +22,14 @@ build() {
para="$(echo $MAKEFLAGS | sed 's/-j//')" para="$(echo $MAKEFLAGS | sed 's/-j//')"
./bootstrap \ ./bootstrap \
--prefix= \ --prefix=/usr \
--no-system-curl \ --docdir=/doc/cmake-$app-$version \
--no-system-expat \
--no-system-jsoncpp \ --no-system-jsoncpp \
--no-system-zlib \ --system-zlib \
--no-system-bzip2 \ --system-curl \
--no-system-libarchive \ --system-expat \
--system-bzip2 \
--system-libarchive \
--no-qt-gui \ --no-qt-gui \
--parallel="$para" \ --parallel="$para" \
--generator=Ninja --generator=Ninja
@ -43,4 +45,4 @@ build() {
sha512sums=" sha512sums="
875b8a67ace104977367d1cb0984307161263c2dd5c36cb4a6af82c2d88fa250a53dd683f234807b28a9b846d2a0dfef225ed02e9feb61960d2999e090118f11 cmake-3.27.7.tar.lz 875b8a67ace104977367d1cb0984307161263c2dd5c36cb4a6af82c2d88fa250a53dd683f234807b28a9b846d2a0dfef225ed02e9feb61960d2999e090118f11 cmake-3.27.7.tar.lz
675c27a8ef1445381fdb20da354621f232964484e9806ba17f67b5840f2e132baf51db3007f8aa580bd68ef48ef76c0a10e155bb68890b3cbb821ffab660cd34 pkgconfig-whitespace.patch 675c27a8ef1445381fdb20da354621f232964484e9806ba17f67b5840f2e132baf51db3007f8aa580bd68ef48ef76c0a10e155bb68890b3cbb821ffab660cd34 pkgconfig-whitespace.patch
" "

View file

@ -1,7 +1,8 @@
# Maintainer: PktSurf <smlinux@pktsurf.in> # Maintainer: PktSurf <smlinux@pktsurf.in>
app=dialog app=dialog
version=1.3 version=1.3
build=2sml vversion=20240619
build=1sml
homepage="https://invisible-island.net/archives/dialog/" homepage="https://invisible-island.net/archives/dialog/"
desc="display dialog boxes from shell scripts" desc="display dialog boxes from shell scripts"
requires="netbsd-curses" requires="netbsd-curses"
@ -10,14 +11,15 @@ prepbuilddir() {
mkandenterbuilddir mkandenterbuilddir
rm -rf $app-$version rm -rf $app-$version
tar xf $srcdir/$app-$version-20170509.tar.?z tar xf $srcdir/$app-$version-$vversion.tar.?z
cd "$app-$version-20170509" cd "$app-$version-$vversion"
fixbuilddirpermissions fixbuilddirpermissions
} }
build() { build() {
./configure \ ./configure \
--prefix= \ --prefix=/usr \
--bindir=/bin \
--with-shared \ --with-shared \
--without-x --without-x
@ -31,4 +33,5 @@ build() {
sha512sums=" sha512sums="
0cfdef91212009306101a91745183639a103d5b07d33d47601197fd95431ed9187eb38b0cd75537a91d98d35c9be0c92655e33ec4670d496bf9f6cc17701ee87 dialog-1.3-20170509.tar.lz 0cfdef91212009306101a91745183639a103d5b07d33d47601197fd95431ed9187eb38b0cd75537a91d98d35c9be0c92655e33ec4670d496bf9f6cc17701ee87 dialog-1.3-20170509.tar.lz
12f68bf7ed42452c4ee3e9a763b7f4b9d7fc04d36cc4a1f4f66e3b2050f92b141f16ebcb05d16e520a20e1d2067ae55fa08f747efedbd77370455f4ad180dc63 dialog-1.3-20240619.tar.lz
" "

View file

@ -21,14 +21,12 @@ build() {
# Default compile options # Default compile options
defconfopts() { defconfopts() {
[[ $arch = aarch64 ]] && \
addconfigopts="--enable-openmp"
./configure \ ./configure \
--prefix= \ --prefix=/usr \
--bindir=/bin \
--enable-shared \ --enable-shared \
--disable-static \ --disable-static \
--enable-threads \ --enable-threads \
$addconfigopts \
$liboptions $liboptions
} }

View file

@ -17,15 +17,10 @@ prepbuilddir() {
} }
build() { build() {
if [[ $arch == aarch64 ]] ; then
sseopts="--disable-sse"
else
sseopts="--enable-sse"
fi
./configure \ ./configure \
--prefix= \ --prefix=/usr \
$sseopts --bindir=/bin \
--enable-sse
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -19,10 +19,13 @@ prepbuilddir() {
build() { build() {
LDFLAGS="-static" \ LDFLAGS="-static" \
./configure \ ./configure \
--prefix= \ --prefix=/usr \
--libexecdir=/lib \ --bindir=/bin \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--without-mpfr \ --without-mpfr \
--without-readline --without-readline \
--disable-nls
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg
@ -34,4 +37,4 @@ build() {
sha512sums=" sha512sums="
90611e4daba7226d5ce8230843bf479dc71c0101740c005d851ef7c5b935b6cd4c42089b858abc1619adc05ed25fc7234f993690a76d2ea0b8e61bcbb7dc5a58 gawk-5.2.2.tar.xz 90611e4daba7226d5ce8230843bf479dc71c0101740c005d851ef7c5b935b6cd4c42089b858abc1619adc05ed25fc7234f993690a76d2ea0b8e61bcbb7dc5a58 gawk-5.2.2.tar.xz
" "