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:
parent
659ac81257
commit
06bd44b23a
8 changed files with 40 additions and 45 deletions
|
@ -1,7 +1,6 @@
|
|||
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||
app=boost
|
||||
sversion=1_81_0
|
||||
version=1.81.0
|
||||
version=1.86.0
|
||||
build=1sml
|
||||
homepage="https://www.boost.org/"
|
||||
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() {
|
||||
mkandenterbuilddir
|
||||
rm -rf "$app"_"$sversion"
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/"$app"_"$sversion".tar.?z*
|
||||
cd "$app"_"$sversion"
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
# Our fixbuilddirpermissions is disliked by a couple of files in here
|
||||
chown -R root.root .
|
||||
touch ."$app-$version.extraction.complete"
|
||||
|
@ -28,10 +27,10 @@ build() {
|
|||
cflags=-fno-strict-aliasing --without-graph_parallel --without-mpi"
|
||||
|
||||
./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
|
||||
( cd $pkg ; ln -s b2 bjam )
|
||||
( cd $pkg/bin ; ln -s b2 bjam )
|
||||
|
||||
cp LICENSE_1_0.txt $pkgdocs/LICENSE
|
||||
|
||||
|
@ -39,5 +38,5 @@ build() {
|
|||
}
|
||||
|
||||
sha512sums="
|
||||
8f18972314e8dd5c952825fc52ca49d17b0e0b31db12bcc1cd0ba42c2d71c4f6ce5f5062fdbb65db029ec2c58ca93a32c32d0cdce62329556200dc8650a03fbf boost_1_81_0.tar.gz
|
||||
f204b7a109c188f61ac1edea9e2284e9ec5c455facc512e3d5a8d687ac03eb56e6593361cc62a41082ca8a60c4d80dea38bf4e8cb293137577e506ea1ba41a97 boost-1.86.0.tar.lz
|
||||
"
|
||||
|
|
|
@ -18,10 +18,9 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--sbindir=/bin \
|
||||
--mandir=/share/man \
|
||||
--with-user=chrony
|
||||
|
||||
make $MAKEFLAGS
|
||||
|
@ -30,12 +29,7 @@ build() {
|
|||
cp COPYING $pkgdocs/
|
||||
|
||||
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
|
||||
|
||||
preprunitservice -s chrony -d
|
||||
|
||||
mkfinalpkg
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||
app=chrpath
|
||||
version=0.16
|
||||
build=2sml
|
||||
build=1sml
|
||||
homepage="https://chrpath.alioth.debian.org/"
|
||||
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"
|
||||
|
@ -18,7 +18,8 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=
|
||||
--prefix=/usr \
|
||||
--bindir=/bin
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
|
@ -6,6 +6,7 @@ homepage="http://www.cmake.org"
|
|||
download="https://github.com/Kitware/CMake/releases/download/v$version/cmake-$version.tar.gz"
|
||||
desc="Cross-platform, open-source make system"
|
||||
requires="gcc-libs openssl libunistring libidn2"
|
||||
ignoreusrbin=1
|
||||
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
|
@ -21,13 +22,14 @@ build() {
|
|||
para="$(echo $MAKEFLAGS | sed 's/-j//')"
|
||||
|
||||
./bootstrap \
|
||||
--prefix= \
|
||||
--no-system-curl \
|
||||
--no-system-expat \
|
||||
--prefix=/usr \
|
||||
--docdir=/doc/cmake-$app-$version \
|
||||
--no-system-jsoncpp \
|
||||
--no-system-zlib \
|
||||
--no-system-bzip2 \
|
||||
--no-system-libarchive \
|
||||
--system-zlib \
|
||||
--system-curl \
|
||||
--system-expat \
|
||||
--system-bzip2 \
|
||||
--system-libarchive \
|
||||
--no-qt-gui \
|
||||
--parallel="$para" \
|
||||
--generator=Ninja
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||
app=dialog
|
||||
version=1.3
|
||||
build=2sml
|
||||
vversion=20240619
|
||||
build=1sml
|
||||
homepage="https://invisible-island.net/archives/dialog/"
|
||||
desc="display dialog boxes from shell scripts"
|
||||
requires="netbsd-curses"
|
||||
|
@ -10,14 +11,15 @@ prepbuilddir() {
|
|||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version-20170509.tar.?z
|
||||
cd "$app-$version-20170509"
|
||||
tar xf $srcdir/$app-$version-$vversion.tar.?z
|
||||
cd "$app-$version-$vversion"
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix= \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--with-shared \
|
||||
--without-x
|
||||
|
||||
|
@ -31,4 +33,5 @@ build() {
|
|||
|
||||
sha512sums="
|
||||
0cfdef91212009306101a91745183639a103d5b07d33d47601197fd95431ed9187eb38b0cd75537a91d98d35c9be0c92655e33ec4670d496bf9f6cc17701ee87 dialog-1.3-20170509.tar.lz
|
||||
12f68bf7ed42452c4ee3e9a763b7f4b9d7fc04d36cc4a1f4f66e3b2050f92b141f16ebcb05d16e520a20e1d2067ae55fa08f747efedbd77370455f4ad180dc63 dialog-1.3-20240619.tar.lz
|
||||
"
|
||||
|
|
|
@ -21,14 +21,12 @@ build() {
|
|||
|
||||
# Default compile options
|
||||
defconfopts() {
|
||||
[[ $arch = aarch64 ]] && \
|
||||
addconfigopts="--enable-openmp"
|
||||
./configure \
|
||||
--prefix= \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--enable-threads \
|
||||
$addconfigopts \
|
||||
$liboptions
|
||||
}
|
||||
|
||||
|
|
|
@ -17,15 +17,10 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
if [[ $arch == aarch64 ]] ; then
|
||||
sseopts="--disable-sse"
|
||||
else
|
||||
sseopts="--enable-sse"
|
||||
fi
|
||||
|
||||
./configure \
|
||||
--prefix= \
|
||||
$sseopts
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--enable-sse
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
|
@ -19,10 +19,13 @@ prepbuilddir() {
|
|||
build() {
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix= \
|
||||
--libexecdir=/lib \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--sysconfdir=/etc \
|
||||
--libexecdir=/usr/lib \
|
||||
--without-mpfr \
|
||||
--without-readline
|
||||
--without-readline \
|
||||
--disable-nls
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
Loading…
Reference in a new issue