Rewrote CFLAGS for base/{parted.pciutils}
Discarded unnecessary build options in base/{sysstat,texinfo,tofrodos,unzip,util-linux,wayland-protocols,xmlto,zlib} base/which is now statically-linked
This commit is contained in:
parent
b003d86866
commit
21c2f83913
12 changed files with 15 additions and 17 deletions
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="$CFLAGS -D_GNU_SOURCE -Dloff_t=off_t -include sys/sysmacros.h" \
|
||||
CFLAGS+=" -Dloff_t=off_t -include sys/sysmacros.h" \
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sbindir=/bin \
|
||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
make CFLAGS="$CFLAGS -D_GNU_SOURCE -DHAVE_PREAD -fPIC" \
|
||||
make CFLAGS+=" -DHAVE_PREAD" \
|
||||
LDFLAGS="-llzma" \
|
||||
PREFIX="/" \
|
||||
SHARED=yes \
|
||||
|
@ -27,7 +27,7 @@ build() {
|
|||
DESTDIR="$pkg" \
|
||||
STRIP="" all install
|
||||
|
||||
make CFLAGS="-D_GNU_SOURCE -DHAVE_PREAD -fPIC" \
|
||||
make CFLAGS+=" -DHAVE_PREAD" \
|
||||
LDFLAGS="-llzma" \
|
||||
PREFIX="/" \
|
||||
SHARED=yes \
|
||||
|
|
|
@ -17,9 +17,10 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
make CFLAGS="$CFLAGS"
|
||||
mkdir -p $pkg/bin $pkg/share/man/man1
|
||||
cp pigz unpigz $pkg/bin/
|
||||
cp pigz.1 $pkg/share/man/man1/
|
||||
|
||||
install -Dm 755 pigz $pkg/bin/pigz
|
||||
install -Dm 755 unpigz $pkg/bin/unpigz
|
||||
install -Dm 644 pigz.1 $pkg/share/man/man1/pigz.1
|
||||
|
||||
cp README $pkgdocs/
|
||||
cp zopfli/COPYING $pkgdocs/COPYING.zopfli
|
||||
|
|
|
@ -23,7 +23,6 @@ build() {
|
|||
|
||||
./configure \
|
||||
--prefix="/" \
|
||||
--sysconfdir=/etc \
|
||||
--disable-nls
|
||||
|
||||
make
|
||||
|
|
|
@ -23,7 +23,7 @@ build() {
|
|||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp AUTHORS COPYING NEWS README* TODO $pkgdocs/
|
||||
cp COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
|
|
@ -17,8 +17,10 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
cd src
|
||||
|
||||
make
|
||||
install -Dm 755 fromdos $pkg/bin/fromdos
|
||||
|
||||
( cd $pkg/bin ; ln -s fromdos todos )
|
||||
|
||||
cp ../COPYING $pkgdocs/
|
||||
|
|
|
@ -26,6 +26,7 @@ build() {
|
|||
make -f unix/Makefile generic
|
||||
|
||||
make prefix="$pkg" -f unix/Makefile install
|
||||
|
||||
mkdir -p $pkg/share/man
|
||||
mv $pkg/man/man* $pkg/share/man/
|
||||
rmdir $pkg/man
|
||||
|
|
|
@ -25,7 +25,6 @@ build() {
|
|||
./configure \
|
||||
--prefix="" --sbindir=/bin --libdir=/lib \
|
||||
--includedir=/include \
|
||||
--disable-silent-rules \
|
||||
--disable-nls --disable-fsck\
|
||||
--enable-libmount-support-mtab \
|
||||
--disable-fdformat --disable-switch-root \
|
||||
|
@ -42,9 +41,6 @@ build() {
|
|||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
# libuuid.la is required by gegl
|
||||
cp .libs/libuuid.la $pkg/lib/
|
||||
|
||||
# Replace dynamically-linked mount with statically-linked mount
|
||||
(
|
||||
cd $pkg/bin
|
||||
|
|
|
@ -16,7 +16,7 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
mkdir smbuild && cd smbuild
|
||||
mkdir -p smbuild && cd smbuild
|
||||
meson .. \
|
||||
--prefix="/"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ prepbuilddir() {
|
|||
}
|
||||
|
||||
build() {
|
||||
CFLAGS="-O2 -static" \
|
||||
LDFLAGS="-static" \
|
||||
./configure \
|
||||
--prefix=""
|
||||
|
||||
|
|
|
@ -17,8 +17,7 @@ prepbuilddir() {
|
|||
|
||||
build() {
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc
|
||||
--prefix=""
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
|
|
@ -22,7 +22,7 @@ build() {
|
|||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp README $pkgdocs/
|
||||
cp LICENSE $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue