Added elfutils and fuse to base
Removed build options that placed elf binaries in /bin Removed executable bit from some build files
This commit is contained in:
parent
db1913af78
commit
a6bc50adc7
158 changed files with 279 additions and 123 deletions
3
base/bash/bash.SMBuild
Executable file → Normal file
3
base/bash/bash.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--without-bash-malloc \
|
--without-bash-malloc \
|
||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--enable-history \
|
--enable-history \
|
||||||
|
@ -31,7 +30,7 @@ build() {
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
( cd $pkg/bin ; ln -s bash sh )
|
( cd $pkg/usr/bin ; ln -s bash sh )
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
1
base/bison/bison.SMBuild
Executable file → Normal file
1
base/bison/bison.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
6
base/boost/boost.SMBuild
Executable file → Normal file
6
base/boost/boost.SMBuild
Executable file → Normal file
|
@ -27,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 --bindir="$pkg"/bin --includedir="$pkg"/usr/include --libdir="$pkg"/usr/lib install
|
./b2 $build_options --bindir="$pkg/usr/bin" --includedir="$pkg/usr/include" --libdir="$pkg/usr/lib" install
|
||||||
|
|
||||||
install -Dm 755 b2 $pkg/bin/b2
|
install -Dm 755 b2 $pkg/usr/bin/b2
|
||||||
( cd $pkg/bin ; ln -s b2 bjam )
|
( cd $pkg/usr/bin ; ln -s b2 bjam )
|
||||||
|
|
||||||
cp LICENSE_1_0.txt $pkgdocs/LICENSE
|
cp LICENSE_1_0.txt $pkgdocs/LICENSE
|
||||||
|
|
||||||
|
|
1
base/brotli/brotli.SMBuild
Executable file → Normal file
1
base/brotli/brotli.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/bubblewrap/bubblewrap.SMBuild
Executable file → Normal file
1
base/bubblewrap/bubblewrap.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--with-priv-mode=setuid \
|
--with-priv-mode=setuid \
|
||||||
--disable-man
|
--disable-man
|
||||||
|
|
||||||
|
|
6
base/busybox/busybox.SMBuild
Executable file → Normal file
6
base/busybox/busybox.SMBuild
Executable file → Normal file
|
@ -26,12 +26,12 @@ build() {
|
||||||
cp $srcdir/busybox.config .config
|
cp $srcdir/busybox.config .config
|
||||||
make CC="$CC"
|
make CC="$CC"
|
||||||
|
|
||||||
install -Dm 755 busybox $pkg/bin/busybox
|
install -Dm 755 busybox $pkg/usr/bin/busybox
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
(
|
(
|
||||||
cd $pkg/bin
|
cd $pkg/usr/bin
|
||||||
|
|
||||||
for f in ntpd passwd udhcpc udhcpd route ifconfig \
|
for f in ntpd passwd udhcpc udhcpd route ifconfig \
|
||||||
telnet telnetd tftp microcom netstat killall5 setfont \
|
telnet telnetd tftp microcom netstat killall5 setfont \
|
||||||
|
@ -43,7 +43,7 @@ build() {
|
||||||
)
|
)
|
||||||
|
|
||||||
install -Dm 755 $srcdir/udhcpc-script $pkg/etc/udhcpc-script
|
install -Dm 755 $srcdir/udhcpc-script $pkg/etc/udhcpc-script
|
||||||
install -Dm 755 $srcdir/dhclient $pkg/bin/dhclient
|
install -Dm 755 $srcdir/dhclient $pkg/usr/bin/dhclient
|
||||||
|
|
||||||
mkdir -p $pkg/usr/share/man/man8
|
mkdir -p $pkg/usr/share/man/man8
|
||||||
for f in sv runsvchdir chpst runsvdir runit runsv runit ;
|
for f in sv runsvchdir chpst runsvdir runit runsv runit ;
|
||||||
|
|
12
base/bzip2/bzip2.SMBuild
Executable file → Normal file
12
base/bzip2/bzip2.SMBuild
Executable file → Normal file
|
@ -29,11 +29,11 @@ build() {
|
||||||
install -Dm 755 libbz2.so.$version $pkg/usr/lib/libbz2.so.$version
|
install -Dm 755 libbz2.so.$version $pkg/usr/lib/libbz2.so.$version
|
||||||
|
|
||||||
# Copy binaries
|
# Copy binaries
|
||||||
install -Dm 755 bzdiff $pkg/bin/bzdiff
|
install -Dm 755 bzdiff $pkg/usr/bin/bzdiff
|
||||||
install -Dm 755 bzgrep $pkg/bin/bzgrep
|
install -Dm 755 bzgrep $pkg/usr/bin/bzgrep
|
||||||
install -Dm 755 bzmore $pkg/bin/bzmore
|
install -Dm 755 bzmore $pkg/usr/bin/bzmore
|
||||||
install -Dm 755 bzip2-shared $pkg/bin/bzip2
|
install -Dm 755 bzip2-shared $pkg/usr/bin/bzip2
|
||||||
install -Dm 755 bzip2recover $pkg/bin/bzip2recover
|
install -Dm 755 bzip2recover $pkg/usr/bin/bzip2recover
|
||||||
|
|
||||||
# And man pages
|
# And man pages
|
||||||
mkdir -p $pkg/usr/share/man/man1
|
mkdir -p $pkg/usr/share/man/man1
|
||||||
|
@ -48,7 +48,7 @@ build() {
|
||||||
ln -sf libbz2.so.$version libbz2.so.1.0
|
ln -sf libbz2.so.$version libbz2.so.1.0
|
||||||
ln -sf libbz2.so.$version libbz2.so
|
ln -sf libbz2.so.$version libbz2.so
|
||||||
|
|
||||||
cd $pkg/bin
|
cd $pkg/usr/bin
|
||||||
ln -sf bzip2 bunzip2
|
ln -sf bzip2 bunzip2
|
||||||
ln -sf bzip2 bzcat
|
ln -sf bzip2 bzcat
|
||||||
ln -sf bzmore bzless
|
ln -sf bzmore bzless
|
||||||
|
|
0
base/c-ares/c-ares.SMBuild
Executable file → Normal file
0
base/c-ares/c-ares.SMBuild
Executable file → Normal file
6
base/ca-certificates/ca-certificates.SMBuild
Executable file → Normal file
6
base/ca-certificates/ca-certificates.SMBuild
Executable file → Normal file
|
@ -21,10 +21,10 @@ build() {
|
||||||
# Update to certdata.txt from $srcdir:
|
# Update to certdata.txt from $srcdir:
|
||||||
xzcat $srcdir/certdata-${version}.txt.xz > mozilla/certdata.txt
|
xzcat $srcdir/certdata-${version}.txt.xz > mozilla/certdata.txt
|
||||||
|
|
||||||
mkdir -p $pkg/usr/share/ca-certificates $pkg/bin $pkg/usr/sbin
|
mkdir -p $pkg/usr/share/ca-certificates $pkg/usr/bin $pkg/usr/sbin
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg CERTSDIR=/usr/share/ca-certificates
|
make install DESTDIR=$pkg BINDIR=/usr/bin CERTSDIR=/usr/share/ca-certificates
|
||||||
cp docs/copyright $pkgdocs/COPYRIGHT
|
cp docs/copyright $pkgdocs/COPYRIGHT
|
||||||
|
|
||||||
mkdir -p $pkg/etc/ca-certificates/update.d
|
mkdir -p $pkg/etc/ca-certificates/update.d
|
||||||
|
@ -38,7 +38,7 @@ build() {
|
||||||
install -Dm 644 sbin/update-ca-certificates.8 $pkg/usr/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!
|
# Why do people hardcode paths in Makefiles!
|
||||||
mv $pkg/usr/sbin/* $pkg/bin/
|
mv $pkg/usr/sbin/* $pkg/usr/bin/
|
||||||
rmdir $pkg/usr/sbin
|
rmdir $pkg/usr/sbin
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#BLURB="Rebuild SSL certificate database."
|
#BLURB="Rebuild SSL certificate database."
|
||||||
chroot . usr/sbin/update-ca-certificates --fresh 1> /dev/null 2> /dev/null
|
chroot . usr/bin/update-ca-certificates --fresh 1> /dev/null 2> /dev/null
|
||||||
|
|
0
base/cbindgen/cbindgen.SMBuild
Executable file → Normal file
0
base/cbindgen/cbindgen.SMBuild
Executable file → Normal file
6
base/ccache/ccache.SMBuild
Executable file → Normal file
6
base/ccache/ccache.SMBuild
Executable file → Normal file
|
@ -20,7 +20,7 @@ build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--bindir=/bin
|
--libdir=/usr/lib
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
@ -28,9 +28,9 @@ build() {
|
||||||
cp GPL* $pkgdocs/
|
cp GPL* $pkgdocs/
|
||||||
|
|
||||||
# Make some necessary symlinks
|
# Make some necessary symlinks
|
||||||
mkdir -p $pkg/lib/ccache
|
mkdir -p $pkg/usr/lib/ccache
|
||||||
(
|
(
|
||||||
cd $pkg/lib/ccache
|
cd $pkg/usr/lib/ccache
|
||||||
ln -sf ../../bin/ccache gcc
|
ln -sf ../../bin/ccache gcc
|
||||||
ln -sf ../../bin/ccache g++
|
ln -sf ../../bin/ccache g++
|
||||||
ln -sf ../../bin/ccache cc
|
ln -sf ../../bin/ccache cc
|
||||||
|
|
3
base/chrony/chrony.SMBuild
Executable file → Normal file
3
base/chrony/chrony.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
|
||||||
--with-user=chrony
|
--with-user=chrony
|
||||||
|
|
||||||
make $MAKEFLAGS
|
make $MAKEFLAGS
|
||||||
|
|
3
base/chrpath/chrpath.SMBuild
Executable file → Normal file
3
base/chrpath/chrpath.SMBuild
Executable file → Normal file
|
@ -18,8 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/cmake/cmake.SMBuild
Executable file → Normal file
1
base/cmake/cmake.SMBuild
Executable file → Normal file
|
@ -6,7 +6,6 @@ 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
|
||||||
|
|
3
base/coreutils/coreutils.SMBuild
Executable file → Normal file
3
base/coreutils/coreutils.SMBuild
Executable file → Normal file
|
@ -23,8 +23,7 @@ build() {
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--libexecdir=/usr/libexec \
|
||||||
--libexecdir=/lib \
|
|
||||||
--without-gmp
|
--without-gmp
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/cpio/cpio.SMBuild
Executable file → Normal file
1
base/cpio/cpio.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ build() {
|
||||||
CFLAGS+=" -fcommon" \
|
CFLAGS+=" -fcommon" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
4
base/crda/crda.SMBuild
Executable file → Normal file
4
base/crda/crda.SMBuild
Executable file → Normal file
|
@ -24,8 +24,8 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make PREFIX="/usr" SBINDIR="/bin"
|
make PREFIX="/usr" SBINDIR="/usr/bin"
|
||||||
make PREFIX="/usr" SBINDIR="/bin" install DESTDIR=$pkg
|
make PREFIX="/usr" SBINDIR="/usr/bin" UDEV_RULE_DIR="/usr/lib/udev/rules.d" install DESTDIR=$pkg
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
|
|
2
base/cryptsetup/cryptsetup.SMBuild
Executable file → Normal file
2
base/cryptsetup/cryptsetup.SMBuild
Executable file → Normal file
|
@ -21,7 +21,7 @@ build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--sbindir=/bin
|
--sbindir=/usr/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/curl/curl.SMBuild
Executable file → Normal file
1
base/curl/curl.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--bindir=/bin \
|
|
||||||
--with-libssh2 \
|
--with-libssh2 \
|
||||||
--without-ca-bundle \
|
--without-ca-bundle \
|
||||||
--with-ca-path=/etc/ssl/certs \
|
--with-ca-path=/etc/ssl/certs \
|
||||||
|
|
10
base/cython/cython.SMBuild
Executable file → Normal file
10
base/cython/cython.SMBuild
Executable file → Normal file
|
@ -8,10 +8,10 @@ desc="C-Extensions for Python3"
|
||||||
|
|
||||||
prepbuilddir() {
|
prepbuilddir() {
|
||||||
mkandenterbuilddir
|
mkandenterbuilddir
|
||||||
rm -rf Cython-$version
|
rm -rf $app-$version
|
||||||
|
|
||||||
tar xf $srcdir/Cython-$version.tar.?z*
|
tar xf $srcdir/$app-$version.tar.?z*
|
||||||
cd Cython-$version
|
cd $app-$version
|
||||||
fixbuilddirpermissions
|
fixbuilddirpermissions
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,11 +20,9 @@ build() {
|
||||||
|
|
||||||
cp COPYING.txt LICENSE.txt $pkgdocs/
|
cp COPYING.txt LICENSE.txt $pkgdocs/
|
||||||
|
|
||||||
mv $pkg/usr/bin $pkg/
|
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
6216e63996e83b887cdcee6cd912d42e7da853640336b9190f5115d687848a902ee5a8edd6bfaef645c066b89e17dcd80ca1387688eb80a527ec23a0a4636e8f Cython-0.29.21.tar.gz
|
7f5998024f307b91fdea33348e0314a241f27791aec7db915fb5f502a9cbaa12e635a814d53f318d393369f03db78064940c54071746bf095a324e3a986e13f2 cython-0.29.21.tar.lz
|
||||||
"
|
"
|
||||||
|
|
1
base/db/db.SMBuild
Executable file → Normal file
1
base/db/db.SMBuild
Executable file → Normal file
|
@ -29,7 +29,6 @@ build() {
|
||||||
db_cv_atomic="$db_atomic" \
|
db_cv_atomic="$db_atomic" \
|
||||||
../dist/configure \
|
../dist/configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-dbm \
|
--enable-dbm \
|
||||||
|
|
8
base/dcron/dcron.SMBuild
Executable file → Normal file
8
base/dcron/dcron.SMBuild
Executable file → Normal file
|
@ -22,11 +22,11 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make PREFIX=/ BINDIR=/bin SBINDIR=/bin CRONTAB_GROUP=root
|
make PREFIX=/usr SBINDIR=/usr/bin CRONTAB_GROUP=root
|
||||||
|
|
||||||
install -Dm 755 crond $pkg/bin/crond
|
install -Dm 755 crond $pkg/usr/bin/crond
|
||||||
install -Dm 4711 crontab $pkg/bin/crontab
|
install -Dm 4711 crontab $pkg/usr/bin/crontab
|
||||||
install -Dm 755 $srcdir/run-parts $pkg/bin/run-parts
|
install -Dm 755 $srcdir/run-parts $pkg/usr/bin/run-parts
|
||||||
|
|
||||||
install -Dm 644 crontab.1 $pkg/usr/share/man/man1/crontab.1
|
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 crond.8 $pkg/usr/share/man/man8/crond.8
|
||||||
|
|
3
base/desktop-file-utils/desktop-file-utils.SMBuild
Executable file → Normal file
3
base/desktop-file-utils/desktop-file-utils.SMBuild
Executable file → Normal file
|
@ -20,8 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
4
base/dialog/dialog.SMBuild
Executable file → Normal file
4
base/dialog/dialog.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--with-shared \
|
--with-shared \
|
||||||
--without-x
|
--without-x
|
||||||
|
|
||||||
|
@ -32,6 +31,5 @@ build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
0cfdef91212009306101a91745183639a103d5b07d33d47601197fd95431ed9187eb38b0cd75537a91d98d35c9be0c92655e33ec4670d496bf9f6cc17701ee87 dialog-1.3-20170509.tar.lz
|
|
||||||
12f68bf7ed42452c4ee3e9a763b7f4b9d7fc04d36cc4a1f4f66e3b2050f92b141f16ebcb05d16e520a20e1d2067ae55fa08f747efedbd77370455f4ad180dc63 dialog-1.3-20240619.tar.lz
|
12f68bf7ed42452c4ee3e9a763b7f4b9d7fc04d36cc4a1f4f66e3b2050f92b141f16ebcb05d16e520a20e1d2067ae55fa08f747efedbd77370455f4ad180dc63 dialog-1.3-20240619.tar.lz
|
||||||
"
|
"
|
3
base/diffutils/diffutils.SMBuild
Executable file → Normal file
3
base/diffutils/diffutils.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
2
base/dmidecode/dmidecode.SMBuild
Executable file → Normal file
2
base/dmidecode/dmidecode.SMBuild
Executable file → Normal file
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg prefix=/usr sbindir=/bin mandir="/usr/share/man"
|
make install DESTDIR=$pkg prefix=/usr sbindir=/usr/bin mandir="/usr/share/man"
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
|
|
0
base/docbook/docbook.SMBuild
Executable file → Normal file
0
base/docbook/docbook.SMBuild
Executable file → Normal file
2
base/dosfstools/dosfstools.SMBuild
Executable file → Normal file
2
base/dosfstools/dosfstools.SMBuild
Executable file → Normal file
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sbindir=/bin
|
--sbindir=/usr/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/ed/ed.SMBuild
Executable file → Normal file
1
base/ed/ed.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make CFLAGS="$CFLAGS"
|
make CFLAGS="$CFLAGS"
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
51
base/elfutils/elfutils.SMBuild
Normal file
51
base/elfutils/elfutils.SMBuild
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||||
|
# Generated by mksm SMLinux build file generator version 0.101
|
||||||
|
app=elfutils
|
||||||
|
version=0.191
|
||||||
|
build=1sml
|
||||||
|
homepage="https://sourceware.org/elfutils/"
|
||||||
|
download="https://sourceware.org/elfutils/ftp/$version/elfutils-$version.tar.bz2"
|
||||||
|
desc="Tools to manipulate ELF binary files"
|
||||||
|
requires="bzip2 curl"
|
||||||
|
noautoconfsite=1
|
||||||
|
|
||||||
|
prepbuilddir() {
|
||||||
|
mkandenterbuilddir
|
||||||
|
rm -rf $app-$version
|
||||||
|
|
||||||
|
tar xf $srcdir/$app-$version.tar.?z*
|
||||||
|
cd $app-$version
|
||||||
|
fixbuilddirpermissions
|
||||||
|
applypatch $srcdir/fix-uninitialized.patch
|
||||||
|
applypatch $srcdir/musl-asm-ptrace-h.patch
|
||||||
|
applypatch $srcdir/musl-macros.patch
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
sed -i 's:-Werror::' */Makefile.in
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--program-prefix=eu- \
|
||||||
|
--disable-debuginfod \
|
||||||
|
--disable-libdebuginfod \
|
||||||
|
--disable-nls \
|
||||||
|
--enable-deterministic-archives
|
||||||
|
|
||||||
|
make
|
||||||
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
|
mkfinalpkg
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sha512sums="
|
||||||
|
f44ba2c36bdf3019a61a35418f05cf138c68eab8fa258a5a74b8517a5d99841f3f92d32dd6d7d6f4d68f7d050768d915833353a21e2c811f029c2988373fa0f9 elfutils-0.191.tar.lz
|
||||||
|
b9ba55e1b56a8abf694b6d02f022d9a3a0ae6ab53a8c4a71e49552e32411ef410d3a7512fbd1a729696bc2046ac11586829816f0fa3b8226ee77c9dc4b741e58 fix-uninitialized.patch
|
||||||
|
7c529f88dc248f657a8d690044560c20a222c5b37d0d7dcb057bf2eea8938c406cccd6129bce19542088511a026b233234c9a83933a525c4691810be9ca712bf musl-asm-ptrace-h.patch
|
||||||
|
792be4a38b55d20a320605ab340357ad55dc295ab241af86cd3edf4ec84b0122e91ebcf78d8d6a0f926104b5eb22306be1356b0892f71ee3ba27ae38e9130aab musl-macros.patch
|
||||||
|
"
|
17
base/elfutils/fix-uninitialized.patch
Normal file
17
base/elfutils/fix-uninitialized.patch
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
--- a/libcpu/i386_disasm.c 2015-08-21 14:22:37.000000000 +0200
|
||||||
|
+++ b/libcpu/i386_disasm.c 2015-11-20 06:30:59.250629957 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* Disassembler for x86.
|
||||||
|
+/* Disassembler for x86.
|
||||||
|
Copyright (C) 2007, 2008, 2009, 2011 Red Hat, Inc.
|
||||||
|
This file is part of elfutils.
|
||||||
|
Written by Ulrich Drepper <drepper@redhat.com>, 2007.
|
||||||
|
@@ -710,6 +710,7 @@
|
||||||
|
|
||||||
|
case 'm':
|
||||||
|
/* Mnemonic. */
|
||||||
|
+ str = mnebuf;
|
||||||
|
|
||||||
|
if (unlikely (instrtab[cnt].mnemonic == MNE_INVALID))
|
||||||
|
{
|
10
base/elfutils/musl-asm-ptrace-h.patch
Normal file
10
base/elfutils/musl-asm-ptrace-h.patch
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- a/backends/ppc_initreg.c 2019-11-26 23:48:42.000000000 +0100
|
||||||
|
+++ b/backends/ppc_initreg.c 2019-12-08 16:57:58.334872602 +0100
|
||||||
|
@@ -32,6 +32,7 @@
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#if defined(__powerpc__) && defined(__linux__)
|
||||||
|
+# include <asm/ptrace.h>
|
||||||
|
# include <sys/ptrace.h>
|
||||||
|
# include <sys/user.h>
|
||||||
|
#endif
|
78
base/elfutils/musl-macros.patch
Normal file
78
base/elfutils/musl-macros.patch
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
diff -ur elfutils-0.187.orig/lib/libeu.h elfutils-0.187/lib/libeu.h
|
||||||
|
--- elfutils-0.187.orig/lib/libeu.h 2022-06-16 18:48:12.916472948 +0200
|
||||||
|
+++ elfutils-0.187/lib/libeu.h 2022-06-16 18:48:54.219839323 +0200
|
||||||
|
@@ -31,6 +31,18 @@
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
+#include <unistd.h>
|
||||||
|
+#include <alloca.h>
|
||||||
|
+#include <string.h>
|
||||||
|
+
|
||||||
|
+#ifndef TEMP_FAILURE_RETRY
|
||||||
|
+#define TEMP_FAILURE_RETRY(expression) \
|
||||||
|
+ (__extension__ \
|
||||||
|
+ ({ long int __result; \
|
||||||
|
+ do __result = (long int) (expression); \
|
||||||
|
+ while (__result == -1L && errno == EINTR); \
|
||||||
|
+ __result; }))
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
extern void *xmalloc (size_t) __attribute__ ((__malloc__));
|
||||||
|
extern void *xcalloc (size_t, size_t) __attribute__ ((__malloc__));
|
||||||
|
diff -ur elfutils-0.187.orig/src/arlib.h elfutils-0.187/src/arlib.h
|
||||||
|
--- elfutils-0.187.orig/src/arlib.h 2022-06-16 18:48:12.919806284 +0200
|
||||||
|
+++ elfutils-0.187/src/arlib.h 2022-06-16 18:48:18.879811052 +0200
|
||||||
|
@@ -29,6 +29,16 @@
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
+#if !defined(ACCESSPERMS)
|
||||||
|
+# define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) /* 0777 */
|
||||||
|
+#endif
|
||||||
|
+#if !defined(ALLPERMS)
|
||||||
|
+# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 07777 */
|
||||||
|
+#endif
|
||||||
|
+#if !defined(DEFFILEMODE)
|
||||||
|
+# define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)/* 0666*/
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
|
||||||
|
/* State of -D/-U flags. */
|
||||||
|
extern bool arlib_deterministic_output;
|
||||||
|
diff -ur elfutils-0.187.orig/src/elfcompress.c elfutils-0.187/src/elfcompress.c
|
||||||
|
--- elfutils-0.187.orig/src/elfcompress.c 2022-06-16 18:48:12.919806284 +0200
|
||||||
|
+++ elfutils-0.187/src/elfcompress.c 2022-06-16 18:48:18.879811052 +0200
|
||||||
|
@@ -37,6 +37,14 @@
|
||||||
|
#include "libeu.h"
|
||||||
|
#include "printversion.h"
|
||||||
|
|
||||||
|
+#if !defined(FNM_EXTMATCH)
|
||||||
|
+# define FNM_EXTMATCH 0
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
+#if !defined(ALLPERMS)
|
||||||
|
+# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 07777 */
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
/* Name and version of program. */
|
||||||
|
ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
|
||||||
|
|
||||||
|
diff -ur elfutils-0.187.orig/src/strip.c elfutils-0.187/src/strip.c
|
||||||
|
--- elfutils-0.187.orig/src/strip.c 2022-06-16 18:48:12.919806284 +0200
|
||||||
|
+++ elfutils-0.187/src/strip.c 2022-06-16 18:48:18.879811052 +0200
|
||||||
|
@@ -46,6 +46,14 @@
|
||||||
|
#include <system.h>
|
||||||
|
#include <printversion.h>
|
||||||
|
|
||||||
|
+#if !defined(FNM_EXTMATCH)
|
||||||
|
+# define FNM_EXTMATCH 0
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
+#if !defined(ACCESSPERMS)
|
||||||
|
+#define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
typedef uint8_t GElf_Byte;
|
||||||
|
|
||||||
|
/* Name and version of program. */
|
5
base/enchant/enchant.SMBuild
Executable file → Normal file
5
base/enchant/enchant.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
@ -30,8 +29,8 @@ build() {
|
||||||
(
|
(
|
||||||
cd $pkg
|
cd $pkg
|
||||||
cd usr/include ; ln -sfv enchant-2 enchant
|
cd usr/include ; ln -sfv enchant-2 enchant
|
||||||
cd ../../bin ; ln -sfv enchant-2 enchant
|
cd ../bin ; ln -sfv enchant-2 enchant
|
||||||
cd ../usr/lib ; ln -sfv libenchant-2.so libenchant.so
|
cd ../lib ; ln -sfv libenchant-2.so libenchant.so
|
||||||
cd pkgconfig ; ln -sfv enchant-2.pc enchant.pc
|
cd pkgconfig ; ln -sfv enchant-2.pc enchant.pc
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
0
base/enet/enet.SMBuild
Executable file → Normal file
0
base/enet/enet.SMBuild
Executable file → Normal file
3
base/eudev/eudev.SMBuild
Executable file → Normal file
3
base/eudev/eudev.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--disable-introspection
|
--disable-introspection
|
||||||
|
|
||||||
|
|
3
base/exfat-utils/exfat-utils.SMBuild
Executable file → Normal file
3
base/exfat-utils/exfat-utils.SMBuild
Executable file → Normal file
|
@ -20,8 +20,7 @@ build() {
|
||||||
CFLAGS+=" -std=c99" \
|
CFLAGS+=" -std=c99" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin
|
||||||
--sbindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/exiv2/exiv2.SMBuild
Executable file → Normal file
1
base/exiv2/exiv2.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ build() {
|
||||||
mkdir -p smbuild && cd smbuild
|
mkdir -p smbuild && cd smbuild
|
||||||
cmake .. \
|
cmake .. \
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
-DCMAKE_INSTALL_BINDIR=/bin \
|
|
||||||
-DCMAKE_INSTALL_LIBDIR=lib
|
-DCMAKE_INSTALL_LIBDIR=lib
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/expat/expat.SMBuild
Executable file → Normal file
1
base/expat/expat.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/faad2/faad2.SMBuild
Executable file → Normal file
1
base/faad2/faad2.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
0
base/fdk-aac/fdk-aac.SMBuild
Executable file → Normal file
0
base/fdk-aac/fdk-aac.SMBuild
Executable file → Normal file
1
base/fftw/fftw.SMBuild
Executable file → Normal file
1
base/fftw/fftw.SMBuild
Executable file → Normal file
|
@ -23,7 +23,6 @@ build() {
|
||||||
defconfopts() {
|
defconfopts() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
|
1
base/file/file.SMBuild
Executable file → Normal file
1
base/file/file.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ build() {
|
||||||
CFLAGS+=" --std=c99" \
|
CFLAGS+=" --std=c99" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--datadir=/etc \
|
--datadir=/etc \
|
||||||
--enable-fsect-man5 \
|
--enable-fsect-man5 \
|
||||||
--disable-libseccomp
|
--disable-libseccomp
|
||||||
|
|
3
base/findutils/findutils.SMBuild
Executable file → Normal file
3
base/findutils/findutils.SMBuild
Executable file → Normal file
|
@ -23,8 +23,7 @@ build() {
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--libexecdir=/usr/libexec
|
||||||
--libexecdir=/libexec
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/flac/flac.SMBuild
Executable file → Normal file
1
base/flac/flac.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--enable-sse
|
--enable-sse
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/flex/flex.SMBuild
Executable file → Normal file
1
base/flex/flex.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ build() {
|
||||||
CPPFLAGS="$CFLAGS -DSTDC_HEADERS" \
|
CPPFLAGS="$CFLAGS -DSTDC_HEADERS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
||||||
|
|
0
base/fmt/fmt.SMBuild
Executable file → Normal file
0
base/fmt/fmt.SMBuild
Executable file → Normal file
1
base/fribidi/fribidi.SMBuild
Executable file → Normal file
1
base/fribidi/fribidi.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
3
base/ftjam/ftjam.SMBuild
Executable file → Normal file
3
base/ftjam/ftjam.SMBuild
Executable file → Normal file
|
@ -22,8 +22,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR="$pkg"
|
make install DESTDIR="$pkg"
|
||||||
|
|
23
base/fuse/doinst.sh
Normal file
23
base/fuse/doinst.sh
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
config() {
|
||||||
|
NEW="$1"
|
||||||
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||||
|
# If there's no config file by that name, mv it over:
|
||||||
|
if [ ! -r $OLD ]; then
|
||||||
|
mv $NEW $OLD
|
||||||
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||||
|
# toss the redundant copy
|
||||||
|
rm $NEW
|
||||||
|
fi
|
||||||
|
# Otherwise, we leave the .new copy for the admin to consider...
|
||||||
|
}
|
||||||
|
|
||||||
|
# Keep same perms on rc.fuse3.new:
|
||||||
|
if [ -e etc/rc.d/rc.fuse3 ]; then
|
||||||
|
cp -a etc/rc.d/rc.fuse3 etc/rc.d/rc.fuse3.new.incoming
|
||||||
|
cat etc/rc.d/rc.fuse3.new > etc/rc.d/rc.fuse3.new.incoming
|
||||||
|
mv etc/rc.d/rc.fuse3.new.incoming etc/rc.d/rc.fuse3.new
|
||||||
|
fi
|
||||||
|
|
||||||
|
config etc/rc.d/rc.fuse.new
|
39
base/fuse/fuse.SMBuild
Normal file
39
base/fuse/fuse.SMBuild
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||||
|
app=fuse
|
||||||
|
version=3.10.5
|
||||||
|
build=1sml
|
||||||
|
homepage="https://github.com/libfuse/libfuse"
|
||||||
|
download="https://github.com/libfuse/libfuse/archive/refs/tags/fuse3-$version.tar.gz"
|
||||||
|
desc="Filesystem in Userspace v3"
|
||||||
|
requires="udev"
|
||||||
|
|
||||||
|
prepbuilddir() {
|
||||||
|
mkandenterbuilddir
|
||||||
|
rm -rf $app-$version
|
||||||
|
|
||||||
|
tar xf $srcdir/$app-$version.tar.?z*
|
||||||
|
cd $app-$version
|
||||||
|
fixbuilddirpermissions
|
||||||
|
}
|
||||||
|
|
||||||
|
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=/usr \
|
||||||
|
--sbindir=/usr/bin \
|
||||||
|
-Dexamples=false
|
||||||
|
|
||||||
|
ninja
|
||||||
|
DESTDIR="$pkg" ninja install
|
||||||
|
|
||||||
|
cp ../LICENSE $pkgdocs
|
||||||
|
|
||||||
|
rm -rv $pkg/dev
|
||||||
|
|
||||||
|
mkfinalpkg
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="
|
||||||
|
d4c397ae6522cc841099e76bb1e11493555e1f2767169cd6980aa64eed6f41a27f19d1282d6f521e1602c533f58ef90af5b1b4bdf86dc032d7316cceba57ead1 fuse-3.10.5.tar.lz
|
||||||
|
"
|
0
base/fuse2/fuse2.SMBuild
Executable file → Normal file
0
base/fuse2/fuse2.SMBuild
Executable file → Normal file
0
base/fuse3/fuse3.SMBuild
Executable file → Normal file
0
base/fuse3/fuse3.SMBuild
Executable file → Normal file
3
base/gawk/gawk.SMBuild
Executable file → Normal file
3
base/gawk/gawk.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ build() {
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--libexecdir=/usr/lib \
|
--libexecdir=/usr/lib \
|
||||||
--without-mpfr \
|
--without-mpfr \
|
||||||
|
@ -37,4 +36,4 @@ build() {
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
b96e82265115800e703d3e2860f7d3463a827cf7e661d6227e8c5e711abeef63af3641cc411423f517d8a43c43be7ad68dd1ef3d7d90bceb6799b57746c9318f gawk-5.2.2.tar.lz
|
b96e82265115800e703d3e2860f7d3463a827cf7e661d6227e8c5e711abeef63af3641cc411423f517d8a43c43be7ad68dd1ef3d7d90bceb6799b57746c9318f gawk-5.2.2.tar.lz
|
||||||
"
|
"
|
||||||
|
|
1
base/gdb/gdb.SMBuild
Executable file → Normal file
1
base/gdb/gdb.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-werror \
|
--disable-werror \
|
||||||
--with-system-zlib \
|
--with-system-zlib \
|
||||||
--disable-sim \
|
--disable-sim \
|
||||||
|
|
1
base/gdbm/gdbm.SMBuild
Executable file → Normal file
1
base/gdbm/gdbm.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
||||||
|
|
1
base/gettext/gettext.SMBuild
Executable file → Normal file
1
base/gettext/gettext.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-java \
|
--disable-java \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
2
base/giflib/giflib.SMBuild
Executable file → Normal file
2
base/giflib/giflib.SMBuild
Executable file → Normal file
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make CFLAGS="$CFLAGS"
|
make CFLAGS="$CFLAGS"
|
||||||
make install DESTDIR="$pkg" PREFIX=/usr BINDIR=/bin
|
make install DESTDIR="$pkg" PREFIX=/usr
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
|
|
1
base/glib/glib.SMBuild
Executable file → Normal file
1
base/glib/glib.SMBuild
Executable file → Normal file
|
@ -20,7 +20,6 @@ build() {
|
||||||
mkdir -p smbuild && cd smbuild
|
mkdir -p smbuild && cd smbuild
|
||||||
|
|
||||||
meson .. --prefix=/usr \
|
meson .. --prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
-Dman=false \
|
-Dman=false \
|
||||||
-Dgtk_doc=false \
|
-Dgtk_doc=false \
|
||||||
-Dselinux=disabled \
|
-Dselinux=disabled \
|
||||||
|
|
1
base/gloox/gloox.SMBuild
Executable file → Normal file
1
base/gloox/gloox.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--without-tests \
|
--without-tests \
|
||||||
|
|
3
base/gnupg2/gnupg2.SMBuild
Executable file → Normal file
3
base/gnupg2/gnupg2.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin
|
||||||
--sbindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
3
base/gperf/gperf.SMBuild
Executable file → Normal file
3
base/gperf/gperf.SMBuild
Executable file → Normal file
|
@ -18,8 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/gpgme/gpgme.SMBuild
Executable file → Normal file
1
base/gpgme/gpgme.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ build() {
|
||||||
# TODO: disable linking against qt5
|
# TODO: disable linking against qt5
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-gpg-test \
|
--disable-gpg-test \
|
||||||
--enable-languages="cl cpp" \
|
--enable-languages="cl cpp" \
|
||||||
|
|
2
base/gptfdisk/gptfdisk.SMBuild
Executable file → Normal file
2
base/gptfdisk/gptfdisk.SMBuild
Executable file → Normal file
|
@ -21,7 +21,7 @@ build() {
|
||||||
make
|
make
|
||||||
|
|
||||||
for f in cgdisk gdisk sgdisk fixparts ; do
|
for f in cgdisk gdisk sgdisk fixparts ; do
|
||||||
install -Dm 755 $f $pkg/bin/$f
|
install -Dm 755 $f $pkg/usr/bin/$f
|
||||||
install -Dm 644 $f.8 $pkg/usr/share/man/man8/$f.8
|
install -Dm 644 $f.8 $pkg/usr/share/man/man8/$f.8
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
3
base/grep/grep.SMBuild
Executable file → Normal file
3
base/grep/grep.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
1
base/groff/groff.SMBuild
Executable file → Normal file
1
base/groff/groff.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--without-x
|
--without-x
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/gsl/gsl.SMBuild
Executable file → Normal file
1
base/gsl/gsl.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/gstreamer/gstreamer.SMBuild
Executable file → Normal file
1
base/gstreamer/gstreamer.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ build() {
|
||||||
|
|
||||||
meson .. \
|
meson .. \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--buildtype=plain \
|
--buildtype=plain \
|
||||||
-Dintrospection=disabled
|
-Dintrospection=disabled
|
||||||
|
|
||||||
|
|
2
base/gyp/gyp.SMBuild
Executable file → Normal file
2
base/gyp/gyp.SMBuild
Executable file → Normal file
|
@ -26,8 +26,6 @@ build() {
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
mv $pkg/usr/bin $pkg/
|
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
3
base/gzip/gzip.SMBuild
Executable file → Normal file
3
base/gzip/gzip.SMBuild
Executable file → Normal file
|
@ -18,8 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
2
base/hdparm/hdparm.SMBuild
Executable file → Normal file
2
base/hdparm/hdparm.SMBuild
Executable file → Normal file
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make
|
make
|
||||||
make install prefix="/usr" mandir="/usr/share/man" sbindir="/bin" DESTDIR="$pkg"
|
make install prefix="/usr" mandir="/usr/share/man" sbindir="/usr/bin" DESTDIR="$pkg"
|
||||||
|
|
||||||
cp LICENSE.TXT $pkgdocs/
|
cp LICENSE.TXT $pkgdocs/
|
||||||
|
|
||||||
|
|
1
base/htop/htop.SMBuild
Executable file → Normal file
1
base/htop/htop.SMBuild
Executable file → Normal file
|
@ -22,7 +22,6 @@ build() {
|
||||||
# Meter.c:415:54: error: 'cchar_t' {aka 'const struct <anonymous>'} has no member named 'attr'
|
# Meter.c:415:54: error: 'cchar_t' {aka 'const struct <anonymous>'} has no member named 'attr'
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-unicode \
|
--disable-unicode \
|
||||||
--enable-sensors \
|
--enable-sensors \
|
||||||
--enable-capabilities
|
--enable-capabilities
|
||||||
|
|
1
base/hunspell/hunspell.SMBuild
Executable file → Normal file
1
base/hunspell/hunspell.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
1
base/hyphen/hyphen.SMBuild
Executable file → Normal file
1
base/hyphen/hyphen.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
2
base/i2c-tools/i2c-tools.SMBuild
Executable file → Normal file
2
base/i2c-tools/i2c-tools.SMBuild
Executable file → Normal file
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make
|
make
|
||||||
make install PREFIX="/usr" mandir="/usr/share/man" DESTDIR="$pkg" bindir="/bin" sbindir="/bin"
|
make install PREFIX="/usr" mandir="/usr/share/man" DESTDIR="$pkg" sbindir="/usr/bin"
|
||||||
|
|
||||||
cp COPYING* $pkgdocs/
|
cp COPYING* $pkgdocs/
|
||||||
|
|
||||||
|
|
3
base/icu/icu.SMBuild
Executable file → Normal file
3
base/icu/icu.SMBuild
Executable file → Normal file
|
@ -20,8 +20,7 @@ build() {
|
||||||
cd source
|
cd source
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
|
||||||
--docdir="/usr/share/doc/$app-$version" \
|
--docdir="/usr/share/doc/$app-$version" \
|
||||||
--disable-tests \
|
--disable-tests \
|
||||||
--disable-samples \
|
--disable-samples \
|
||||||
|
|
1
base/ijs/ijs.SMBuild
Executable file → Normal file
1
base/ijs/ijs.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--mandir=/usr/share/man \
|
--mandir=/usr/share/man \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
3
base/intltool/intltool.SMBuild
Executable file → Normal file
3
base/intltool/intltool.SMBuild
Executable file → Normal file
|
@ -20,8 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr
|
||||||
--bindir=/bin
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
5
base/iptables/iptables.SMBuild
Executable file → Normal file
5
base/iptables/iptables.SMBuild
Executable file → Normal file
|
@ -19,8 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
|
||||||
--disable-nftables
|
--disable-nftables
|
||||||
|
|
||||||
make
|
make
|
||||||
|
@ -30,7 +29,7 @@ build() {
|
||||||
|
|
||||||
# Fix awkward symlinking
|
# Fix awkward symlinking
|
||||||
(
|
(
|
||||||
cd $pkg/bin
|
cd $pkg/usr/bin
|
||||||
rm iptables-xml
|
rm iptables-xml
|
||||||
ln -sf xtables-legacy-multi iptables-xml
|
ln -sf xtables-legacy-multi iptables-xml
|
||||||
)
|
)
|
||||||
|
|
0
xorg/at-spi2-core/at-spi2-core.SMBuild
Executable file → Normal file
0
xorg/at-spi2-core/at-spi2-core.SMBuild
Executable file → Normal file
0
xorg/bdftopcf/bdftopcf.SMBuild
Executable file → Normal file
0
xorg/bdftopcf/bdftopcf.SMBuild
Executable file → Normal file
5
xorg/dbus/dbus.SMBuild
Executable file → Normal file
5
xorg/dbus/dbus.SMBuild
Executable file → Normal file
|
@ -21,8 +21,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--libexecdir=/usr/lib \
|
--libexecdir=/usr/lib \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
|
@ -47,8 +46,6 @@ build() {
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
mv $pkg/lib/dbus-1.0/include/dbus/dbus-arch-deps.h $pkg/include/dbus-1.0/dbus/
|
|
||||||
install -Dm 755 $srcdir/rc.messagebus $pkg/etc/rc.d/rc.messagebus
|
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
|
|
0
xorg/dconf/dconf.SMBuild
Executable file → Normal file
0
xorg/dconf/dconf.SMBuild
Executable file → Normal file
0
xorg/dejavu-fonts-ttf/dejavu-fonts-ttf.SMBuild
Executable file → Normal file
0
xorg/dejavu-fonts-ttf/dejavu-fonts-ttf.SMBuild
Executable file → Normal file
0
xorg/font-util/font-util.SMBuild
Executable file → Normal file
0
xorg/font-util/font-util.SMBuild
Executable file → Normal file
1
xorg/fontconfig/fontconfig.SMBuild
Executable file → Normal file
1
xorg/fontconfig/fontconfig.SMBuild
Executable file → Normal file
|
@ -22,7 +22,6 @@ build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--bindir=/bin \
|
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--disable-docs
|
--disable-docs
|
||||||
|
|
||||||
|
|
0
xorg/freeglut/freeglut.SMBuild
Executable file → Normal file
0
xorg/freeglut/freeglut.SMBuild
Executable file → Normal file
3
xorg/freetype/freetype.SMBuild
Executable file → Normal file
3
xorg/freetype/freetype.SMBuild
Executable file → Normal file
|
@ -19,7 +19,6 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-harfbuzz=no
|
--with-harfbuzz=no
|
||||||
|
|
||||||
|
@ -27,7 +26,7 @@ build() {
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
# For some reason, freetype-config is not installed, which breaks builds like dia
|
# For some reason, freetype-config is not installed, which breaks builds like dia
|
||||||
install -Dm 755 builds/unix/freetype-config $pkg/bin/freetype-config
|
install -Dm 755 builds/unix/freetype-config $pkg/usr/bin/freetype-config
|
||||||
|
|
||||||
cp docs/GPLv2.TXT $pkgdocs/
|
cp docs/GPLv2.TXT $pkgdocs/
|
||||||
|
|
||||||
|
|
1
xorg/glslang-vulkan-sdk/glslang-vulkan-sdk.SMBuild
Executable file → Normal file
1
xorg/glslang-vulkan-sdk/glslang-vulkan-sdk.SMBuild
Executable file → Normal file
|
@ -21,7 +21,6 @@ build() {
|
||||||
cmake .. \
|
cmake .. \
|
||||||
-DCMAKE_BUILD_TYPE=None \
|
-DCMAKE_BUILD_TYPE=None \
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
-DCMAKE_INSTALL_BINDIR=/bin \
|
|
||||||
-DCMAKE_INSTALL_LIBDIR=lib \
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||||
-DBUILD_SHARED_LIBS=On \
|
-DBUILD_SHARED_LIBS=On \
|
||||||
-DENABLE_OPT=0
|
-DENABLE_OPT=0
|
||||||
|
|
0
xorg/glslang/glslang.SMBuild
Executable file → Normal file
0
xorg/glslang/glslang.SMBuild
Executable file → Normal file
0
xorg/glu/glu.SMBuild
Executable file → Normal file
0
xorg/glu/glu.SMBuild
Executable file → Normal file
0
xorg/iceauth/iceauth.SMBuild
Executable file → Normal file
0
xorg/iceauth/iceauth.SMBuild
Executable file → Normal file
0
xorg/imake/imake.SMBuild
Executable file → Normal file
0
xorg/imake/imake.SMBuild
Executable file → Normal file
0
xorg/imlib2/imlib2.SMBuild
Executable file → Normal file
0
xorg/imlib2/imlib2.SMBuild
Executable file → Normal file
0
xorg/jasper/jasper.SMBuild
Executable file → Normal file
0
xorg/jasper/jasper.SMBuild
Executable file → Normal file
0
xorg/libx11/libx11.SMBuild
Executable file → Normal file
0
xorg/libx11/libx11.SMBuild
Executable file → Normal file
0
xorg/libxau/libxau.SMBuild
Executable file → Normal file
0
xorg/libxau/libxau.SMBuild
Executable file → Normal file
0
xorg/libxaw/libxaw.SMBuild
Executable file → Normal file
0
xorg/libxaw/libxaw.SMBuild
Executable file → Normal file
0
xorg/libxaw3d/libxaw3d.SMBuild
Executable file → Normal file
0
xorg/libxaw3d/libxaw3d.SMBuild
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue