Renamed base/fuse to base/fuse2
Discarded code for copying Changelog in base/acpid Upgraded base/attr to 2.5.1 Replaced CFLAGS with LDFLAGS for static linking in base/coreutils Removed code that stripped static archive in base/curl Removed -L/lib flag in LDFLAGS in base/e2fsprogs and partly fixed make install line Fixed subshell code order in base/file Disabled compile tests in base/fmt base/fuse2 's init script path is now passed to configure to remove any need for post compile path and directory fixes Fixed hardcoded init path in base/fuse3 and removed related unnecessary code Disabled static lib generation in base/gmp Base/gpgme now only builds for predefined languages Rewrote entire build code in base/tree Partly rewrote build code in base/zip
This commit is contained in:
parent
c71ddf0c8f
commit
8447f126af
17 changed files with 53 additions and 101 deletions
|
@ -156,7 +156,8 @@ libtheora
|
|||
physfs
|
||||
brotli
|
||||
hyphen
|
||||
fuse
|
||||
fuse2
|
||||
fuse3
|
||||
gnutls
|
||||
libsndfile
|
||||
libtorrent
|
||||
|
@ -321,5 +322,4 @@ fmt
|
|||
argon2
|
||||
qrencode
|
||||
libqalculate
|
||||
fuse3
|
||||
protobuf
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=acpid
|
||||
version=2.0.32
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://sourceforge.net/projects/acpid2"
|
||||
download=""
|
||||
desc="Tools and daemon for implementing ACPI standard on Linux"
|
||||
|
@ -30,7 +30,6 @@ build() {
|
|||
install -Dm 755 $srcdir/rc.acpid $pkg/etc/rc.d/rc.acpid
|
||||
|
||||
cp COPYING $pkgdocs/
|
||||
head -n 100 Changelog > $pkgdocs/CHANGELOG
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
--- attr-2.4.47.org/include/xattr.h
|
||||
+++ attr-2.4.47/include/xattr.h
|
||||
@@ -30,8 +30,13 @@
|
||||
#define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
|
||||
#define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
|
||||
|
||||
+#ifndef __THROW
|
||||
+#define __THROW
|
||||
+#endif
|
||||
|
||||
-__BEGIN_DECLS
|
||||
+#ifdef __cplusplus
|
||||
+extern "C" {
|
||||
+#endif
|
||||
|
||||
extern int setxattr (const char *__path, const char *__name,
|
||||
const void *__value, size_t __size, int __flags) __THROW;
|
||||
@@ -58,6 +63,8 @@
|
||||
extern int lremovexattr (const char *__path, const char *__name) __THROW;
|
||||
extern int fremovexattr (int __filedes, const char *__name) __THROW;
|
||||
|
||||
-__END_DECLS
|
||||
+#ifdef __cplusplus
|
||||
+}
|
||||
+#endif
|
||||
|
||||
#endif /* __XATTR_H__ */
|
|
@ -1,8 +1,8 @@
|
|||
app=attr
|
||||
version=2.4.47
|
||||
version=2.5.1
|
||||
build=1sml
|
||||
homepage="https://savannah.nongnu.org/projects/attr"
|
||||
download="https://download.savannah.nongnu.org/releases/attr/attr-$version.src.tar.gz"
|
||||
download="http://download.savannah.nongnu.org/releases/attr/attr-$version.tar.xz"
|
||||
requires="musl"
|
||||
desc="Tools for manipulating extended attributes on filesystems"
|
||||
|
||||
|
@ -13,33 +13,21 @@ prepbuilddir() {
|
|||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
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="" \
|
||||
--enable-gettext=no
|
||||
--docdir="/share/doc/$app-$version" \
|
||||
--disable-static \
|
||||
--disable-nls
|
||||
|
||||
for i in po ; do
|
||||
printf 'all:\n\ttrue\ninstall:\n\ttrue\ninstall-lib:\n\ttrue\ninstall-dev:\n\ttrue\nclean:\n\ttrue\n' > "$i"/Makefile
|
||||
done
|
||||
|
||||
make LDFLAGS=-all-static
|
||||
|
||||
make DESTDIR="$pkg" install install-lib install-dev
|
||||
|
||||
cp doc/{COPYING,COPYING.LGPL} $pkgdocs/
|
||||
make
|
||||
make install DESTDIR="$pkg"
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
8d1c8b506db2e0c8290d49dc2672a59d7fb5a8e74e784835132d706ebd0c52a14d848fde8fe629c551b51bdc098152f0e5ee0290d0ef51dd5f90dca3c113d24b attr-2.4.47.tar.lz
|
||||
28236fb6bd7021d249bb2f4fc98a4445f86d336afd4289708b3580d126f08c0c952595f78aa14b203f857df06e5c7262348b660c0e206de3efb1caecf6d19f8c attr-cdefs.patch
|
||||
"
|
||||
d42787fedef0784c519931e9158dfb9fd51fedf5f1f59c7ea5c0877f6b4082abb9150a8e15dc02c467fd1ee2ef39c5c20c6b4c4d14dc7b3b47f6c2f9e637ad7e attr-2.5.1.tar.lz
|
||||
"
|
|
@ -1,6 +1,6 @@
|
|||
app=coreutils
|
||||
version=8.32
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://www.gnu.org/software/coreutils/coreutils.html"
|
||||
download="http://ftp.gnu.org/gnu/coreutils/coreutils-$version.tar.xz"
|
||||
desc="Core GNU utilities"
|
||||
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
FORCE_UNSAFE_CONFIGURE=1 \
|
||||
CFLAGS="$CFLAGS -static" \
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--bindir=/bin \
|
||||
|
|
|
@ -38,8 +38,6 @@ build() {
|
|||
# We don't ship the related perl script (yet):
|
||||
rm -f $pkg/share/man/man1/mk-ca-bundle.1
|
||||
|
||||
strip -g $pkg/lib/libcurl.a
|
||||
|
||||
cp COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=e2fsprogs
|
||||
version=1.45.3
|
||||
build=2sml
|
||||
build=3sml
|
||||
homepage="http://e2fsprogs.sourceforge.net/"
|
||||
download="https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v$version/e2fsprogs-$version.tar.xz"
|
||||
desc="Utilities for working with ext 2, 3 and 4 filesystems"
|
||||
|
@ -22,7 +22,7 @@ build() {
|
|||
|
||||
ac_cv_path_mkdir="mkdir -p" \
|
||||
CFLAGS+=" -D__uint64_t=u_int64_t" \
|
||||
LDFLAGS="-L/lib -static" \
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--with-root-prefix="" \
|
||||
|
@ -30,11 +30,10 @@ build() {
|
|||
--disable-nls \
|
||||
--disable-libblkid \
|
||||
--disable-libuuid \
|
||||
--disable-uuidd
|
||||
--disable-uuidd
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
make DESTDIR=$pkg install-libs
|
||||
|
||||
cp NOTICE $pkgdocs/LICENSE
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=file
|
||||
version=5.39
|
||||
build=3sml
|
||||
build=4sml
|
||||
homepage="https://www.darwinsys.com/file/"
|
||||
download="http://astron.com/pub/file/file-$version.tar.gz"
|
||||
desc="Utility to determine file types"
|
||||
|
@ -27,6 +27,9 @@ build() {
|
|||
--enable-fsect-man5 \
|
||||
--disable-libseccomp
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
# Install the flat files
|
||||
# We'll regenerate /etc/file/magic.mgc in the doinst.sh
|
||||
#rm $pkg/etc/file/magic.mgc
|
||||
|
@ -36,13 +39,10 @@ build() {
|
|||
|
||||
install -Dm 755 $srcdir/recompile_magic.mgc.sh $pkg/etc/file/recompile_magic.mgc.sh
|
||||
|
||||
( cd $pkg/etc ; ln -sf file misc )
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp COPYING $pkgdocs/
|
||||
|
||||
( cd $pkg/etc ; ln -sf file misc )
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=fmt
|
||||
version=8.1.0
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://github.com/fmtlib/fmt"
|
||||
download="https://github.com/fmtlib/fmt/archive/refs/tags/$version.tar.gz"
|
||||
desc="Formatting library for C++"
|
||||
|
@ -22,6 +22,7 @@ build() {
|
|||
-DCMAKE_INSTALL_LIBDIR="/lib" \
|
||||
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DFMT_TEST=OFF \
|
||||
-Wno-dev
|
||||
|
||||
make
|
||||
|
|
|
@ -14,11 +14,11 @@ config() {
|
|||
}
|
||||
|
||||
# Keep same perms on rc.fuse.new:
|
||||
if [ -e etc/rc.d/rc.fuse ]; then
|
||||
cp -a etc/rc.d/rc.fuse etc/rc.d/rc.fuse.new.incoming
|
||||
cat etc/rc.d/rc.fuse.new > etc/rc.d/rc.fuse.new.incoming
|
||||
mv etc/rc.d/rc.fuse.new.incoming etc/rc.d/rc.fuse.new
|
||||
if [ -e etc/rc.d/rc.fuse2 ]; then
|
||||
cp -a etc/rc.d/rc.fuse2 etc/rc.d/rc.fuse2.new.incoming
|
||||
cat etc/rc.d/rc.fuse2.new > etc/rc.d/rc.fuse2.new.incoming
|
||||
mv etc/rc.d/rc.fuse2.new.incoming etc/rc.d/rc.fuse2.new
|
||||
fi
|
||||
|
||||
config etc/rc.d/rc.fuse.new
|
||||
config etc/rc.d/rc.fuse2.new
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
app=fuse
|
||||
app=fuse2
|
||||
version=2.9.5
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://github.com/libfuse/libfuse"
|
||||
download="https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz"
|
||||
desc="Interface to export virtual filesystem in userspace"
|
||||
|
@ -8,14 +8,16 @@ requires="musl"
|
|||
|
||||
prepbuilddir() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
rm -rf fuse-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
tar xf $srcdir/fuse-$version.tar.?z*
|
||||
cd fuse-$version
|
||||
fixbuilddirpermissions
|
||||
}
|
||||
|
||||
build() {
|
||||
INIT_D_PATH="/etc/rc.d" \
|
||||
MOUNT_FUSE_PATH="/bin" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc \
|
||||
|
@ -27,11 +29,8 @@ build() {
|
|||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
mv $pkg/sbin/* $pkg/bin/ ; rmdir $pkg/sbin
|
||||
|
||||
mkdir -p $pkg/etc/rc.d
|
||||
mv $pkg/etc/init.d/fuse $pkg/etc/rc.d/rc.fuse.new
|
||||
rm -rf $pkg/etc/init.d
|
||||
rm -rv $pkg/dev
|
||||
mv $pkg/etc/rc.d/fuse $pkg/etc/rc.d/rc.fuse2.new
|
||||
|
||||
cp COPYING* $pkgdocs/
|
||||
|
|
@ -20,5 +20,4 @@ if [ -e etc/rc.d/rc.fuse3 ]; then
|
|||
mv etc/rc.d/rc.fuse3.new.incoming etc/rc.d/rc.fuse3.new
|
||||
fi
|
||||
|
||||
config etc/rc.d/rc.fuse3.new
|
||||
config etc/fuse.conf.new
|
||||
config etc/rc.d/rc.fuse.new
|
||||
|
|
|
@ -17,6 +17,7 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
mkdir -p smbuild && cd smbuild
|
||||
sed -i 's@/etc/init.d/fuse3@/etc/rc.d/rc.fuse.new@g' ../util/install_helper.sh
|
||||
meson .. \
|
||||
--prefix="/" \
|
||||
--sbindir=bin \
|
||||
|
@ -25,11 +26,10 @@ build() {
|
|||
ninja
|
||||
DESTDIR="$pkg" ninja install
|
||||
|
||||
# We don't need the fuse init script
|
||||
rm -rf $pkg/etc/init.d
|
||||
|
||||
cp ../LICENSE $pkgdocs
|
||||
|
||||
rm -rv $pkg/dev
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
|
|
|
@ -19,7 +19,8 @@ build() {
|
|||
./configure \
|
||||
--prefix="" \
|
||||
--with-pic \
|
||||
--enable-cxx
|
||||
--enable-cxx \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=gpgme
|
||||
version=1.13.1
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="https://gnupg.org/software/gpgme/index.html"
|
||||
download="https://gnupg.org/ftp/gcrypt/gpgme/gpgme-$version.tar.bz2"
|
||||
desc="C language library to easily add crypto to a program"
|
||||
|
@ -20,7 +20,8 @@ build() {
|
|||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static \
|
||||
--disable-gpg-test
|
||||
--disable-gpg-test \
|
||||
--enable-languages="cl cpp"
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=tree
|
||||
version=1.6.0
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="http://mama.indstate.edu/users/ice/tree/"
|
||||
download="http://mama.indstate.edu/users/ice/tree/src/tree-$version.tgz"
|
||||
desc="Program to display a directory tree"
|
||||
|
@ -16,10 +16,7 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
make
|
||||
|
||||
install -Dm 755 tree $pkg/bin/tree
|
||||
install -Dm 644 doc/tree.1 $pkg/share/man/man1/tree.1
|
||||
make install prefix="$pkg" MANDIR="$pkg/share/man/man1"
|
||||
|
||||
cp LICENSE $pkgdocs/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
app=zip
|
||||
version=30
|
||||
build=1sml
|
||||
build=2sml
|
||||
homepage="http://www.info-zip.org/Zip.html"
|
||||
download="https://downloads.sourceforge.net/infozip/zip$version.tar.gz"
|
||||
desc="Compression and file packaging utility"
|
||||
|
@ -17,12 +17,9 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
make -f unix/Makefile generic_gcc \
|
||||
CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS"
|
||||
|
||||
make prefix="$pkg" -f unix/Makefile install
|
||||
mkdir -p $pkg/share/man
|
||||
mv $pkg/man/man* $pkg/share/man/
|
||||
rmdir $pkg/man
|
||||
make prefix="$pkg" -f unix/Makefile install MANDIR="$pkg/share/man/man1"
|
||||
|
||||
cp LICENSE $pkgdocs/
|
||||
|
||||
|
|
Loading…
Reference in a new issue