Split build() into prepbuilddir() and build() functions in base, xorg, gtk, extra and
net subsection package build files Upgraded base/rust to 1.64.0 Added cbindgen 0.24.3 to base Upgraded base/gdbm to 1.23 Added -mno-outline-atomics as CXXFLAGS to fix build breakage in base/gpgme Fixed rc.gtk script in base/initfs Added preservestaticlibs to prevent static libraries from being discarded and upgraded base/libcap to 2.67 Upgraded base/nodejs to 18.14.2 Temporarily discarded unnecessary code and comments in installpkg script in base/pkgtools Added protobuf 3.14.0 to base Upgraded base/python3 to 3.9.16 Upgraded base/sccache to 0.3.3 Upgraded extra/abiword to 3.0.5 Added adafruit-io 2.7.0 to extra Added code to discard creation of systemd directory in extra/bluez Added code to discard /usr directory in extra/ffmpeg Removed unnecessary CFLAGS in extra/freerdp Upgraded extra/imagemagick to 7.1.0 Upgraded extra/vim to 9.0.1000 Added build option to disable linking against gtk2 in extra/xarchiver Upgraded heavybuilds/firefox to 102.8.0 ESR, discarded extraneous files that were part of it Upgraded net/fail2ban to 1.0.2 Discarded unnecessary CFLAGS in net/lynx Optimised build code in net/maccalc Fixed noautoconfsite variable and added --disable-xxhash build option to net/rsync Removed unnecessary CFLAGS in xorg/libtiff and xorg/libxklavier
This commit is contained in:
parent
53fcd0f669
commit
03b8e2675c
717 changed files with 2887 additions and 2286 deletions
|
@ -6,14 +6,16 @@ download="https://download.savannah.nongnu.org/releases/acl/acl-$version.tar.gz"
|
|||
requires="attr"
|
||||
desc="Tools and libraries for manipulating POSIX Access Control Lists"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
app=acpid
|
||||
version=2.0.32
|
||||
build=1sml
|
||||
homepage="http://sourceforge.net/projects/acpid2/"
|
||||
homepage="https://sourceforge.net/projects/acpid2"
|
||||
download=""
|
||||
desc="Tools and daemon for implementing ACPI standard on Linux"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
compileonlyfor x86_64
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
@ -14,7 +14,9 @@ build() {
|
|||
tar xf $srcdir/$app-$version.tar.?z**
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc \
|
||||
|
|
|
@ -6,16 +6,17 @@ download=""
|
|||
desc="Advanced Linux Sound Architecture provides audio and MIDI functionality for Linux"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z**
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/remove-test.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-python \
|
||||
|
@ -37,7 +38,7 @@ build() {
|
|||
mkdir -p etc ; touch etc/asound.conf.new
|
||||
)
|
||||
|
||||
if [ "$ARCH" = "aarch64" ]; then
|
||||
if [ "$arch" = "aarch64" ]; then
|
||||
# Provide some sample conf files for using USB audio by overwriting the above file
|
||||
cp $srcdir/alsa.conf.rpi.usbaudio $pkg/share/alsa/alsa.conf.new
|
||||
cp $srcdir/asound.conf.rpi $pkg/etc/asound.conf.new
|
||||
|
|
|
@ -6,14 +6,16 @@ download=""
|
|||
desc="Plugins for ALSA"
|
||||
requires="alsa-lib"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z**
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--libdir=/lib
|
||||
|
|
|
@ -6,14 +6,16 @@ download=""
|
|||
requires="netbsd-curses alsa-lib"
|
||||
desc="Userland utilities for ALSA"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z**
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/P-H-C/phc-winner-argon2/archive/refs/tags/$version.
|
|||
desc="A password hashing function written in C"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make OPTTARGET="none" LIBRARY_REL="lib" PREFIX="/"
|
||||
make OPTTARGET="none" LIBRARY_REL="lib" PREFIX="/" install DESTDIR=$pkg
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ desc="Hierarchical argument parsing library broken out of glibc"
|
|||
requires="musl"
|
||||
preservestaticlibs=1
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -17,7 +17,9 @@ build() {
|
|||
|
||||
applypatch $srcdir/gnu89-inline.patch
|
||||
applypatch $srcdir/001-throw-in-funcdef.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download=""
|
|||
desc="Text document format for writing notes and documentation"
|
||||
requires="python3 libxslt docbook"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-"py3"-$version
|
||||
|
||||
tar xf $srcdir/$app-"py3"-$version.tar.?z*
|
||||
cd $app-"py3"-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -5,14 +5,16 @@ homepage="http://aspell.net/"
|
|||
requires="gcc-libs netbsd-curses perl"
|
||||
desc="Spell checker for GNU Linux"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc/aspell \
|
||||
|
|
|
@ -6,14 +6,16 @@ download=""
|
|||
requires="aspell"
|
||||
desc="Dictionary files for aspell spelling checker"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version-2018.04.16-0.tar.bz2
|
||||
cd "$app-$version-2018.04.16-0"
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure
|
||||
|
||||
make
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://download.savannah.nongnu.org/releases/attr/attr-$version.src.t
|
|||
requires="musl"
|
||||
desc="Tools for manipulating extended attributes on filesystems"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -17,9 +17,10 @@ build() {
|
|||
sed -i 's@-o $(PKG_USER) -g $(PKG_GROUP)@@' include/buildmacros
|
||||
sed -i 's@CHOWN=_chown@CHOWN=true@' include/install-sh
|
||||
applypatch $srcdir/attr-cdefs.patch
|
||||
|
||||
make clean
|
||||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/autoconf/autoconf-$version.tar.xz"
|
|||
requires="m4 perl perl-modules diffutils gawk"
|
||||
desc="m4 macros extension to produce scripts for software packaging"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/automake/automake-$version.tar.xz"
|
|||
desc="GNU Makefile generator"
|
||||
requires="autoconf perl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://github.com/scop/bash-completion/archive/refs/tags/$version.tar
|
|||
requires="bash"
|
||||
desc="Programmable completion for the bash shell"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -16,7 +16,9 @@ build() {
|
|||
|
||||
# Thank you slackware
|
||||
applypatch $srcdir/fixup-sh-script-completions.diff
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/bash/bash-$version.tar.gz"
|
|||
requires="netbsd-curses"
|
||||
desc="GNU Bourne-Again SHell"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
bash_cv_getenv_redef=no \
|
||||
bash_cv_sys_named_pipes=yes \
|
||||
ac_cv_rl_version=5.0 \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/gavinhoward/bc/releases/download/$version/bc-$versi
|
|||
desc="Arbitrary precision numeric processing language"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z**
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure.sh -EHNG
|
||||
|
||||
make all
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/bison/bison-$version.tar.xz"
|
|||
desc="parser generator similar to yacc"
|
||||
requires="m4"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-nls
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- boost_1_60_0.org/tools/build/src/engine/execunix.c 2013-01-04 09:45:43.165000002 +0000
|
||||
+++ boost_1_60_0/tools/build/src/engine/execunix.c 2013-01-04 09:46:20.095000004 +0000
|
||||
@@ -18,7 +18,7 @@
|
||||
#include <sys/times.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
-#if defined(sun) || defined(__sun)
|
||||
+#if defined(sun) || defined(__sun) || defined(__GLIBC__)
|
||||
#include <wait.h>
|
||||
#endif
|
||||
|
|
@ -7,14 +7,16 @@ download="https://boostorg.jfrog.io/artifactory/main/release/$version/source/boo
|
|||
requires="bzip2 zlib findutils python3 icu xz"
|
||||
desc="Huge collection of free peer-reviewed portable C++ source libraries"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf "$app"_"$sversion"
|
||||
|
||||
tar xf $srcdir/"$app"_"$sversion".tar.?z*
|
||||
cd "$app"_"$sversion"
|
||||
chown -R root.root .
|
||||
}
|
||||
|
||||
build() {
|
||||
CC="$CC" \
|
||||
./bootstrap.sh \
|
||||
--prefix="$pkg" --with-toolset=gcc --with-icu --with-python=python3
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/google/brotli/archive/refs/tags/v$version.tar.gz"
|
|||
requires="musl"
|
||||
desc="Lossless compression algorithm based on LZ77, Huffman coding and 2nd order context modeling"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./bootstrap
|
||||
|
||||
./configure \
|
||||
|
|
|
@ -6,7 +6,7 @@ download=""
|
|||
desc="Unprivileged sandboxing tool to reduce attack surfaces"
|
||||
requires="libcap"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/realpath-workaround.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--with-priv-mode=setuid \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
|||
requires="musl"
|
||||
desc="Swiss army knife of embedded linux providing subsets of common UNIX utilities"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -19,7 +19,9 @@ build() {
|
|||
applypatch $srcdir/busybox-fdisk-sector-size.patch
|
||||
applypatch $srcdir/busybox-libbb-make-unicode-printable.patch
|
||||
applypatch $srcdir/busybox-ping.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
cp $srcdir/busybox.config .config
|
||||
make CC="$CC"
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://sourceware.org/pub/bzip2/bzip2-$version.tar.gz"
|
|||
requires="musl"
|
||||
desc="block-sorting file compressor based on Burrows-Wheeler text compression algorithm"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
# Prevent tests from running
|
||||
sed -i 's@all: libbz2.a bzip2 bzip2recover test@all: libbz2.a bzip2 bzip2recover@' Makefile
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://c-ares.haxx.se/download/c-ares-$version.tar.gz"
|
|||
desc="C library for asynchronous DNS requests including name resolves"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--enable-shared
|
||||
|
|
|
@ -5,7 +5,7 @@ homepage="https://ftp.debian.org/debian/pool/main/c/ca-certificates/"
|
|||
desc="PEM Files of CA Certificates"
|
||||
requires="musl curl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
tar xf $srcdir/$app.tar.?z*
|
||||
|
||||
|
@ -14,7 +14,9 @@ build() {
|
|||
|
||||
# Patch to remove incompatible arguments from run-parts
|
||||
applypatch $srcdir/fixup_update-ca-certificates.diff
|
||||
}
|
||||
|
||||
build() {
|
||||
# Update to certdata.txt from $srcdir:
|
||||
xzcat $srcdir/certdata-${version}.txt.xz > mozilla/certdata.txt
|
||||
|
||||
|
|
30
base/cbindgen/cbindgen.SMBuild
Executable file
30
base/cbindgen/cbindgen.SMBuild
Executable file
|
@ -0,0 +1,30 @@
|
|||
app=cbindgen
|
||||
version=0.24.3
|
||||
build=1sml
|
||||
homepage="https://github.com/eqrion/cbindgen"
|
||||
download=""
|
||||
desc="Tool for generating Rust headers from C code"
|
||||
requires="rust"
|
||||
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
RUSTONIG_DYNAMIC_LIBONIG=1 \
|
||||
cargo build --offline --release --target $arch-unknown-linux-musl $MAKEFLAGS
|
||||
install -Dm 755 target/$arch-unknown-linux-musl/release/cbindgen $pkg/bin/cbindgen
|
||||
|
||||
cp LICENSE $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
9bed6bb1d4f9829a94eadca36cb56e8d6a4065c632823fa910ef684708db9cf3983ab3b462dcf24f3291c689c2beac9a6ce6aad5682ebfbb86fe7259f6bcbd0c cbindgen-0.24.3.tar.lz
|
||||
"
|
|
@ -6,14 +6,16 @@ download="https://github.com/ccache/ccache/releases/download/v$version/ccache-$v
|
|||
desc="Compiler cache to speed up re-compilation of C/C++ code by caching previous compiles"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://download.tuxfamily.org/chrony/chrony-$version.tar.gz"
|
|||
desc="Lightweight program to maintain accuracy of the real time clock via NTP"
|
||||
requires="nettle libcap"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://alioth.debian.org/frs/download.php/latestfile/813/chrpath-$ver
|
|||
desc="Program to modify rpath aka dynamic library load path of binaries"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--mandir=/share/man
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://cmake.org/files/v$version/cmake-$version.tar.gz"
|
|||
desc="Cross-platform, open-source make system"
|
||||
requires="gcc-libs openssl libunistring libidn2"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
para="$(echo $MAKEFLAGS | sed 's/-j//')"
|
||||
|
||||
./bootstrap \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="http://ftp.gnu.org/gnu/coreutils/coreutils-$version.tar.xz"
|
|||
desc="Core GNU utilities"
|
||||
requires="attr acl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/ls.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
FORCE_UNSAFE_CONFIGURE=1 \
|
||||
CFLAGS="$CFLAGS -static" \
|
||||
./configure \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/cpio/cpio-$version.tar.gz"
|
|||
desc="Backup and archiving utility"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="$CFLAGS -fcommon" \
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
|
|
@ -5,7 +5,7 @@ homepage="https://wireless.wiki.kernel.org/en/developers/regulatory/crda"
|
|||
requires="libnl libgcrypt python-m2crypto"
|
||||
desc="Udev wrapper for communicating between kernel and userspace"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -20,7 +20,9 @@ build() {
|
|||
|
||||
# Disable -Werror, just in case
|
||||
sed -i 's@-Werror@@g' Makefile
|
||||
}
|
||||
|
||||
build() {
|
||||
make PREFIX="/" SBINDIR="/bin"
|
||||
make PREFIX="/" SBINDIR="/bin" install DESTDIR=$pkg
|
||||
|
||||
|
|
|
@ -7,14 +7,16 @@ download="https://github.com/mbroz/cryptsetup/archive/refs/tags/v$mversion.tar.g
|
|||
desc="Utility for setting up encrypted filesystems"
|
||||
requires="popt util-linux libgpg-error libgcrypt lvm"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sbindir=/bin \
|
||||
|
|
|
@ -7,14 +7,16 @@ desc="Command line URL data transfer tool"
|
|||
requires="zlib openssl brotli libssh2 libidn2 nghttp2 libunistring libpsl"
|
||||
preservestaticlibs=1
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc \
|
||||
|
|
|
@ -5,14 +5,16 @@ homepage="https://pypi.org/project/Cython"
|
|||
requires="python3 python-setuptools"
|
||||
desc="C-Extensions for Python3"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf Cython-$version
|
||||
|
||||
tar xf $srcdir/Cython-$version.tar.?z*
|
||||
cd Cython-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
python3 setup.py install --prefix="" --root=$pkg
|
||||
|
||||
cp COPYING.txt LICENSE.txt $pkgdocs/
|
||||
|
|
|
@ -6,7 +6,7 @@ download="http://download.oracle.com/berkeley-db/db-$version.tar.gz"
|
|||
desc="Berkeley embedded database library"
|
||||
requires="gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -14,14 +14,16 @@ build() {
|
|||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/bdb-configure.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
if [ "$arch" = "aarch64" ]; then
|
||||
db_atomic=gcc-builtin
|
||||
else
|
||||
db_atomic=x86/gcc-assembly
|
||||
fi
|
||||
|
||||
applypatch $srcdir/bdb-configure.patch
|
||||
|
||||
cd build_unix
|
||||
|
||||
db_cv_clock_monotonic=yes \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="http://www.jimpryor.net/linux/releases/dcron-$version.tar.gz"
|
|||
desc="Dillons Cron daemon"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -18,7 +18,9 @@ build() {
|
|||
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="" BINDIR=/bin SBINDIR=/bin CRONTAB_GROUP=root
|
||||
|
||||
install -Dm 755 crond $pkg/bin/crond
|
||||
|
@ -41,6 +43,7 @@ build() {
|
|||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
19e645ecf073f38539cce45daf82e4d1eac58fbba514e18c9c4e8b9976dd9557ece7dcb2ad3c90bc0b05ec732f7fbb76617a97ec572cc28625398935734ac56a dcron-4.5.tar.lz
|
||||
687ba63afc4bf6028a7a4f0debfcb8b8758aaacd1ddb317136d55dfae7c57c572d81edf340b4b36476280a38b71b740f23e9f56a02a95ebd0f0aacdcba735c59 0002-README-var-spool-cron-crontabs-root.patch
|
||||
|
|
|
@ -5,7 +5,7 @@ homepage="https://www.freedesktop.org/wiki/Software/desktop-file-utils/"
|
|||
desc="Utilities for manipulating desktop files"
|
||||
requires="glib pcre"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
|
||||
# Thank you slackware
|
||||
applypatch $srcdir/desktop-file-utils.quiet.warnings.diff
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -5,14 +5,16 @@ homepage="https://invisible-island.net/archives/dialog/"
|
|||
desc="display dialog boxes from shell scripts"
|
||||
requires="netbsd-curses"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version-20170509.tar.?z
|
||||
cd "$app-$version-20170509"
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://ftp.gnu.org/gnu/diffutils/diffutils-$version.tar.xz"
|
|||
desc="Utilities to find and apply differences between files"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -17,7 +17,9 @@ build() {
|
|||
for i in tests gnulib-tests doc ; do
|
||||
printf "all:\n\ttrue\n\ninstall:\n\ttrue\n\n" > "$i"/Makefile.in
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
CPPFLAGS="$($srcdir/gnulibfix lib)" \
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="http://download.savannah.gnu.org/releases/dmidecode/dmidecode-$version
|
|||
desc="DMI table decoder"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
compileonlyfor x86_64
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
@ -14,7 +14,9 @@ build() {
|
|||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
make install DESTDIR=$pkg prefix="" mandir="/share/man" sbindir="/bin"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://people.redhat.com/~heinzm/sw/dmraid/src/dmiraid-$version.rc16-
|
|||
desc="Tool and a library to discover, configure and activate ATA RAID devices"
|
||||
requires="lvm"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app
|
||||
|
||||
|
@ -21,6 +21,11 @@ build() {
|
|||
applypatch $srcdir/005-fix_isw_sectors_calculation.patch
|
||||
applypatch $srcdir/006-musl-libc.patch
|
||||
applypatch $srcdir/007-fix-loff_t-musl.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
|
||||
unset MAKEFLAGS CFLAGS CXXFLAGS
|
||||
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
@ -32,7 +37,6 @@ build() {
|
|||
--disable-static_link \
|
||||
$builddist
|
||||
|
||||
unset MAKEFLAGS CFLAGS CXXFLAGS
|
||||
make -j1
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
|
|
|
@ -8,14 +8,16 @@ xslv="1.79.2"
|
|||
desc="DocBook DTD for XML"
|
||||
requires="libxslt libxml2"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/docbook-xml-$docbookv.tar.?z*
|
||||
cd docbook-xml-$docbookv
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
xml_catalog="$pkg/etc/xml/catalog"
|
||||
xml_docbook="$pkg/etc/xml/docbook"
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/dosfstools/dosfstools/releases/download/v$version/d
|
|||
desc="Tools for working with FAT filesystems"
|
||||
requires="eudev"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprog
|
|||
desc="Utilities for working with ext 2, 3 and 4 filesystems"
|
||||
requires="util-linux"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
for i in misc/fsck.c misc/mke2fs.c e2fsck/unix.c ; do
|
||||
sed -i 's@sbin@bin@g' $i
|
||||
done
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/ed/ed-$version.tar.lz"
|
|||
desc="Old-school POSIX-compliant text editor"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/AbiWord/$version/releases/download/v$version/enchan
|
|||
desc="spell checking library"
|
||||
requires="gcc-libs glib aspell hunspell"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -6,14 +6,16 @@ download="http://enet.bespin.org/download/enet-$version.tar.gz"
|
|||
requires="musl"
|
||||
desc="simple and robust network communication layer over UDP"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--enable-static=no
|
||||
|
|
|
@ -7,14 +7,16 @@ desc="Independent fork of udev dynamic device manager by Gentoo devs"
|
|||
requires="util-linux"
|
||||
preservestaticlibs=1
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/relan/exfat/archive/refs/tags/v$version.tar.gz"
|
|||
desc="Utilities to create and manipulate Microsoft exFAT filesystems"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="$CFLAGS -std=c99" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/Exiv2/exiv2/releases/download/v$version/exiv2-$vers
|
|||
desc="C++ library and a utility to read and write Exif, IPTC and XMP image metadata"
|
||||
requires="gcc-libs expat zlib curl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir smbuild && cd smbuild
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ build=1sml
|
|||
desc="C library for parsing XML"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -7,14 +7,16 @@ download="https://github.com/knik0/faad2/archive/refs/tags/$mversion.tar.gz"
|
|||
desc="HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://sourceforge.net/projects/opencore-amr/files/fdk-aac/fdk-aac-$v
|
|||
desc="AAC audio encoding and decoding library"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--enable-shared \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://www.fftw.org/fftw-$version.tar.gz"
|
|||
desc="Collection of fast C routines for computing the Discrete Fourier Transform in multiple dimensions"
|
||||
requires="gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
sed -i 's@-mtune=native@$CFLAGS@g' configure
|
||||
|
||||
# Default compile options
|
||||
|
|
|
@ -6,7 +6,7 @@ download="http://astron.com/pub/file/file-$version.tar.gz"
|
|||
desc="Utility to determine file types"
|
||||
requires="bzip2 zlib"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -16,7 +16,9 @@ build() {
|
|||
|
||||
applypatch $srcdir/file.etc.file.diff
|
||||
applypatch $srcdir/file.short.diff
|
||||
}
|
||||
|
||||
build() {
|
||||
# linking against libseccomp causes weird "Bad system call" issues
|
||||
CFLAGS="$CFLAGS --std=c99" \
|
||||
./configure \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://ftp.gnu.org/gnu/findutils/findutils-$version.tar.gz"
|
|||
desc="POSIX-compliant utilities to locate files"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -16,7 +16,9 @@ build() {
|
|||
|
||||
applypatch $srcdir/findutils.no.default.options.warnings.diff
|
||||
applypatch $srcdir/mountlist.c.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.osuosl.org/pub/xiph/releases/flac/flac-$version.tar.xz"
|
|||
desc="Open-source lossless audio codec"
|
||||
requires="libogg"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-sse
|
||||
|
|
|
@ -6,16 +6,17 @@ download="https://github.com/westes/flex/archive/refs/tags/v$version.tar.gz"
|
|||
desc="fast lexical analyzer generator"
|
||||
requires="m4"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
unset CPPFLAGS
|
||||
|
||||
printf "all:\n\ttrue\n\ninstall:\n\ttrue\n\n" > tests/Makefile.in
|
||||
|
||||
CPPFLAGS="$CFLAGS -DSTDC_HEADERS" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/fmtlib/fmt/archive/refs/tags/$version.tar.gz"
|
|||
desc="Formatting library for C++"
|
||||
requires="musl gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir smbuild && cd smbuild
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/fribidi/fribidi/releases/download/v$version/fribidi
|
|||
desc="Unicode BiDirectional algorithm library"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/libfuse/libfuse/releases/download/fuse-$version/fus
|
|||
desc="Interface to export virtual filesystem in userspace"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/libfuse/libfuse/archive/refs/tags/fuse3-$version.ta
|
|||
desc="Filesystem in Userspace v3"
|
||||
requires="udev"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf fuse-$version
|
||||
|
||||
tar xf $srcdir/fuse-$version.tar.?z*
|
||||
cd fuse-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir -p smbuild && cd smbuild
|
||||
meson .. \
|
||||
--prefix="/" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/gawk/gawk-$version.tar.xz"
|
|||
desc="POSIX-compliant pattern scanning and processing language"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="$CFLAGS -static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -7,14 +7,16 @@ desc="GNU symbolic debugger"
|
|||
requires="gcc-libs netbsd-curses expat xz python3 gmp mpfr"
|
||||
noautoconfsite=1
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-werror \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/gdbm/gdbm-$version.tar.gz"
|
|||
desc="set of database routines that work similar to the standard UNIX dbm routines"
|
||||
requires="readline"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-nls \
|
||||
|
@ -28,5 +30,5 @@ build() {
|
|||
}
|
||||
|
||||
sha512sums="
|
||||
7e62e23fcec1351e0db6fa7a530711bd1fe8c01d72a8c69f178af2556bb9d47f4e37ea689a196e6e33d6c27b536bf9f8075f17c7e208e2892bc8d2add9e5331c gdbm-1.18.tar.lz
|
||||
eee8e46baecaeb9e8e4844d7a941195bd9e85ac04133499634ea5a1de9a1eaa3dd80da9fdf92ba29f2b54c6960b5c6f3eaf96c09117c1128568722ddbb3104f8 gdbm-1.23.tar.lz
|
||||
"
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/pub/gnu/gettext/gettext-$version.tar.xz"
|
|||
desc="Toolkit to internationalize messages given by shell scripts"
|
||||
requires="attr acl libxml2"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://sourceforge.net/projects/giflib/files/giflib-$version.tar.gz"
|
|||
desc="Library for manipulating GIF files"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/giflib-5.1.9-fix-missing-quantize-API-symbols.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
make CFLAGS="$CFLAGS"
|
||||
make install DESTDIR=$pkg PREFIX="/"
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://mirrors.edge.kernel.org/pub/software/scm/git/git-$version.tar.
|
|||
desc="Fast, scalable, distributed revision control system"
|
||||
requires="curl openssl pcre asciidoc"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make CC="$CC" $MAKEFLAGS CFLAGS="$CFLAGS" \
|
||||
prefix="/" gitexecdir="/lib/git-core" \
|
||||
NO_TCLTK=1 NO_PYTHON=1 NO_EXPAT=1 NO_GETTEXT=1 \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://download.gnome.org/sources/glib/2.66/glib-$version.tar.xz"
|
|||
desc="library of C routines"
|
||||
requires="libffi util-linux pcre python3 gettext meson"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir smbuild && cd smbuild
|
||||
|
||||
meson .. --prefix="/" \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://camaya.net/download/gloox-$version.tar.bz2"
|
|||
desc="Rock-solid, full-featured Jabber/XMPP client library in C++"
|
||||
requires="gcc-libs libidn gnutls"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/gloox-musl.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--enable-shared \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/jstedfast/gmime/archive/refs/tags/2.6.23.tar.gz"
|
|||
desc="Library to parse and create messages in MIME format"
|
||||
requires="netbsd-curses libffi glib util-linux pcre gpgme"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://gmplib.org/download/gmp/gmp-$version.tar.lz"
|
|||
desc="GNU multiple precision arithmetic library"
|
||||
requires="gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--with-pic \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://sourceforge.net/projects/gnu-efi/files/gnu-efi-$version.tar.bz
|
|||
desc="library to develop applications using GNU toolchain and EFI dev environment"
|
||||
requires="libelf-compat"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
compileonlyfor x86_64
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
@ -14,7 +14,9 @@ build() {
|
|||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make PREFIX="/" INSTALLROOT="$pkg" -j1 all install
|
||||
|
||||
mkfinalpkg
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://gnupg.org/ftp/gcrypt/gnupg/gnupg-$version.tar.bz2"
|
|||
desc="The GNU Privacy Guard version 2.x"
|
||||
requires="bzip2 sqlite libassuan readline libksba libusb gnutls npth"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf gnupg-$version
|
||||
|
||||
tar xf $srcdir/gnupg-$version.tar.?z*
|
||||
cd gnupg-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sbindir=/bin
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-$version.tar.xz"
|
|||
desc="GNU TLS 1.0 and SSL 3.0 implementation"
|
||||
requires="gcc-libs zlib gmp libidn libtasn1 nettle openssl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="/" \
|
||||
--disable-openssl-compatibility \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="http://ftp.gnu.org/pub/gnu/gperf/gperf-$version.tar.gz"
|
|||
desc="perfect hash function generator in C++"
|
||||
requires="gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -6,15 +6,18 @@ download="https://gnupg.org/ftp/gcrypt/gpgme/gpgme-$version.tar.bz2"
|
|||
desc="C language library to easily add crypto to a program"
|
||||
requires="gcc-libs libassuan libgpg-error"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
# TODO: disable linking against qt5
|
||||
CXXFLAGS="$CXXFLAGS -mno-outline-atomics" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://sourceforge.net/projects/gptfdisk/files/gptfdisk/$version/gptf
|
|||
desc="GPT fdisk utilities"
|
||||
requires="gcc-libs netbsd-curses popt util-linux"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
sed -i '/^#include /s|ncursesw/||' gptcurses.cc
|
||||
make
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/grep/grep-$version.tar.xz"
|
|||
desc="print lines matching a pattern"
|
||||
requires="pcre"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="$CFLAGS -static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/groff/groff-$version.tar.gz"
|
|||
desc="GNU replacement for nroff and troff text formatters"
|
||||
requires="gcc-libs perl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--without-x
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/gsl/gsl-$version.tar.gz"
|
|||
desc="Numerical library for C and C++ programmers written in ANSI C"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://gstreamer.freedesktop.org/data/src/gstreamer/gstreamer-$versio
|
|||
desc="streaming multimedia framework"
|
||||
requires="glib pcre libffi zlib"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir -p smbuild && cd smbuild
|
||||
|
||||
meson .. \
|
||||
|
|
|
@ -5,7 +5,7 @@ homepage="https://gyp.gsrc.io/"
|
|||
desc="Meta-Build system that generates other build systems"
|
||||
requires="python3"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version"_caa60026"
|
||||
|
||||
|
@ -18,7 +18,9 @@ build() {
|
|||
applypatch $srcdir/gyp-python3.patch
|
||||
applypatch $srcdir/gyp-python38.patch
|
||||
applypatch $srcdir/gyp-python39.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
python3 setup.py install --prefix="" --root="$pkg"
|
||||
|
||||
cp LICENSE $pkgdocs/
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://ftp.gnu.org/gnu/gzip/gzip-$version.tar.gz"
|
|||
desc="GNU file compression utility"
|
||||
requires="less"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
@ -26,5 +28,5 @@ build() {
|
|||
}
|
||||
|
||||
sha512sums="
|
||||
09b441299039479488700b7ef267ab7f71268af0d648d32cf6b1efcac58e59f1f352fa9d4f95278e96a76dc21239be1a5acab319bc85a7501cf5d8573c83d857 gzip-1.12.tar.gz
|
||||
9c3f061844413ee2d382608dd9019813f78edc72bd75ab53f58c757d60859f9139b3850ccf1ed191a739f80836e9a6bfe734ec59ddba991a3ff3b322ec7e356d gzip-1.12.tar.lz
|
||||
"
|
|
@ -6,14 +6,16 @@ download="http://www.issihosts.com/haveged/haveged-$version.tar.gz"
|
|||
desc="Entropy daemon especially suited for low-powered devices"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://sourceforge.net/projects/hdparm/files/hdparm/hdparm-$version.t
|
|||
desc="Hard disk information utility"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
make install DESTDIR=$pkg mandir="/share/man" sbindir="/bin"
|
||||
|
||||
|
|
|
@ -6,14 +6,16 @@ download="http://www.andre-simon.de/zip/highlight-$version.tar.bz2"
|
|||
desc="Universal syntax highlighter"
|
||||
requires="gcc-libs musl lua53 readline netbsd-curses"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
make install PREFIX="/" DESTDIR=$pkg
|
||||
|
||||
|
|
|
@ -1,23 +1,30 @@
|
|||
app=htop
|
||||
version=3.2.2
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://htop.dev/"
|
||||
download="https://github.com/$app-dev/$app/archive/refs/tags/$version.tar.gz"
|
||||
desc="ncurses-based interactive process viewer written in C"
|
||||
requires="netbsd-curses"
|
||||
requires="netbsd-curses libcap lm-sensors"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
|
||||
# enabling unicode causes this error:
|
||||
# Meter.c:415:54: error: 'cchar_t' {aka 'const struct <anonymous>'} has no member named 'attr'
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
--disable-unicode
|
||||
--disable-unicode \
|
||||
--enable-sensors \
|
||||
--enable-capabilities
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
@ -28,5 +35,5 @@ build() {
|
|||
}
|
||||
|
||||
sha512sums="
|
||||
59f3f06677076262e25a478552e4438ce37028e2f064d3fb78653d3213b48ae4d78c7e0d62ee785a4ed3c6c99b7faafd9afab94c4350a4e5c5843cef81aaf489 htop-3.2.2.tar.xz
|
||||
ffe7566c048d82d56e5cc57d96d8fd3fe78c8e7e04815690dfe8ebeb1197f3ebff31d76176c96b671b5d71c659dc305c2ac11137bf6c2013ce85dbdcdd7b53e8 htop-3.2.2.tar.lz
|
||||
"
|
|
@ -6,14 +6,16 @@ download="https://github.com/hunspell/hunspell/files/2573619/hunspell-$version.t
|
|||
desc="Spell checker based on OpenOffice.org myspell library"
|
||||
requires="gcc-libs"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://sourceforge.net/projects/hunspell/files/Hyphen/2.8/hyphen-$ver
|
|||
desc="TeX hyphenation library"
|
||||
requires="perl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://mirrors.edge.kernel.org/pub/software/utils/i2c-tools/i2c-tools
|
|||
desc="Utilties to read and program data from I2C-protocol based sensors"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
make install PREFIX="/" mandir="/share/man" DESTDIR="$pkg" sbindir="/bin"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://github.com/unicode-org/icu/releases/download/release-72-1/icu4
|
|||
desc="International Components for Unicode"
|
||||
requires="gcc-libs python3"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf "$app"
|
||||
|
||||
|
@ -14,7 +14,9 @@ build() {
|
|||
tar xf $srcdir/icu4c-$sversion-src.tar.lz
|
||||
cd icu
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
cd source
|
||||
CFLAGS="$CFLAGS" \
|
||||
./configure \
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://sourceforge.net/projects/id3lib/files/id3lib/$version/id3lib-$
|
|||
desc="ID3 tag manipulation library"
|
||||
requires="gcc-libs zlib"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -25,8 +25,9 @@ build() {
|
|||
aclocal
|
||||
autoconf
|
||||
automake --add-missing --copy
|
||||
}
|
||||
|
||||
# TODO: disable static libs generation
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
$builddist
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://www.openprinting.org/download/ijs/download/ijs-$version.tar.bz
|
|||
desc="print library for transmission of raster page images"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--mandir=/share/man \
|
||||
|
|
|
@ -6,14 +6,16 @@ download="https://github.com/ndevilla/iniparser/archive/refs/tags/v$version.tar.
|
|||
desc="Stand-alone ini file parsing library written in ANSI C"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
|
||||
install -Dm 644 src/iniparser.h $pkg/include/iniparser.h
|
||||
|
|
|
@ -7,10 +7,12 @@ desc="initfs - initial file system hierarchy creator"
|
|||
requires="musl"
|
||||
disablepkgsymlinks=1
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
arch=noarch
|
||||
mkandenterbuilddir
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkg
|
||||
tar xf $srcdir/$app.tar.lz
|
||||
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
# Thank you slackware
|
||||
|
||||
waitfile="/tmp/updatinggtkfile"
|
||||
|
||||
if [[ -f $waitfile ]] ; then
|
||||
|
||||
until [[ ! -f $waitfile ]] ; do
|
||||
echo "Waiting for previous GTK cache modules to finish updating"
|
||||
sleep 2
|
||||
done
|
||||
|
||||
else
|
||||
|
||||
touch "$waitfile"
|
||||
|
||||
if [ -x /bin/fc-cache ]; then
|
||||
echo "Updating X font indexes..."
|
||||
/bin/fc-cache -f &
|
||||
|
@ -42,7 +55,10 @@ fi
|
|||
|
||||
if [ -x /bin/glib-compile-schemas ]; then
|
||||
echo "Compiling GSettings XML scheme files..."
|
||||
/bin/glib-compile-schemas share/glib-2.0/schemas >/dev/null 2>&1 &
|
||||
/bin/glib-compile-schemas /share/glib-2.0/schemas >/dev/null 2>&1 &
|
||||
fi
|
||||
|
||||
rm -f "$waitfile"
|
||||
|
||||
exit 0
|
||||
fi
|
||||
|
|
|
@ -6,7 +6,7 @@ download="https://launchpad.net/intltool/trunk/$version/+download/intltool-$vers
|
|||
desc="Utilities for translation support"
|
||||
requires="perl-modules"
|
||||
|
||||
build() {
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
|
@ -15,7 +15,9 @@ build() {
|
|||
fixbuilddirpermissions
|
||||
|
||||
applypatch $srcdir/intltool-regex-warning.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue