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() {
|
build() {
|
||||||
CFLAGS="$CFLAGS -D_GNU_SOURCE -Dloff_t=off_t -include sys/sysmacros.h" \
|
CFLAGS+=" -Dloff_t=off_t -include sys/sysmacros.h" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix="" \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make CFLAGS="$CFLAGS -D_GNU_SOURCE -DHAVE_PREAD -fPIC" \
|
make CFLAGS+=" -DHAVE_PREAD" \
|
||||||
LDFLAGS="-llzma" \
|
LDFLAGS="-llzma" \
|
||||||
PREFIX="/" \
|
PREFIX="/" \
|
||||||
SHARED=yes \
|
SHARED=yes \
|
||||||
|
@ -27,7 +27,7 @@ build() {
|
||||||
DESTDIR="$pkg" \
|
DESTDIR="$pkg" \
|
||||||
STRIP="" all install
|
STRIP="" all install
|
||||||
|
|
||||||
make CFLAGS="-D_GNU_SOURCE -DHAVE_PREAD -fPIC" \
|
make CFLAGS+=" -DHAVE_PREAD" \
|
||||||
LDFLAGS="-llzma" \
|
LDFLAGS="-llzma" \
|
||||||
PREFIX="/" \
|
PREFIX="/" \
|
||||||
SHARED=yes \
|
SHARED=yes \
|
||||||
|
|
|
@ -17,9 +17,10 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make CFLAGS="$CFLAGS"
|
make CFLAGS="$CFLAGS"
|
||||||
mkdir -p $pkg/bin $pkg/share/man/man1
|
|
||||||
cp pigz unpigz $pkg/bin/
|
install -Dm 755 pigz $pkg/bin/pigz
|
||||||
cp pigz.1 $pkg/share/man/man1/
|
install -Dm 755 unpigz $pkg/bin/unpigz
|
||||||
|
install -Dm 644 pigz.1 $pkg/share/man/man1/pigz.1
|
||||||
|
|
||||||
cp README $pkgdocs/
|
cp README $pkgdocs/
|
||||||
cp zopfli/COPYING $pkgdocs/COPYING.zopfli
|
cp zopfli/COPYING $pkgdocs/COPYING.zopfli
|
||||||
|
|
|
@ -23,7 +23,6 @@ build() {
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="/" \
|
--prefix="/" \
|
||||||
--sysconfdir=/etc \
|
|
||||||
--disable-nls
|
--disable-nls
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -23,7 +23,7 @@ build() {
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
cp AUTHORS COPYING NEWS README* TODO $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,8 +17,10 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd src
|
cd src
|
||||||
|
|
||||||
make
|
make
|
||||||
install -Dm 755 fromdos $pkg/bin/fromdos
|
install -Dm 755 fromdos $pkg/bin/fromdos
|
||||||
|
|
||||||
( cd $pkg/bin ; ln -s fromdos todos )
|
( cd $pkg/bin ; ln -s fromdos todos )
|
||||||
|
|
||||||
cp ../COPYING $pkgdocs/
|
cp ../COPYING $pkgdocs/
|
||||||
|
|
|
@ -26,6 +26,7 @@ build() {
|
||||||
make -f unix/Makefile generic
|
make -f unix/Makefile generic
|
||||||
|
|
||||||
make prefix="$pkg" -f unix/Makefile install
|
make prefix="$pkg" -f unix/Makefile install
|
||||||
|
|
||||||
mkdir -p $pkg/share/man
|
mkdir -p $pkg/share/man
|
||||||
mv $pkg/man/man* $pkg/share/man/
|
mv $pkg/man/man* $pkg/share/man/
|
||||||
rmdir $pkg/man
|
rmdir $pkg/man
|
||||||
|
|
|
@ -25,7 +25,6 @@ build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" --sbindir=/bin --libdir=/lib \
|
--prefix="" --sbindir=/bin --libdir=/lib \
|
||||||
--includedir=/include \
|
--includedir=/include \
|
||||||
--disable-silent-rules \
|
|
||||||
--disable-nls --disable-fsck\
|
--disable-nls --disable-fsck\
|
||||||
--enable-libmount-support-mtab \
|
--enable-libmount-support-mtab \
|
||||||
--disable-fdformat --disable-switch-root \
|
--disable-fdformat --disable-switch-root \
|
||||||
|
@ -42,9 +41,6 @@ build() {
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
# libuuid.la is required by gegl
|
|
||||||
cp .libs/libuuid.la $pkg/lib/
|
|
||||||
|
|
||||||
# Replace dynamically-linked mount with statically-linked mount
|
# Replace dynamically-linked mount with statically-linked mount
|
||||||
(
|
(
|
||||||
cd $pkg/bin
|
cd $pkg/bin
|
||||||
|
|
|
@ -16,7 +16,7 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
mkdir smbuild && cd smbuild
|
mkdir -p smbuild && cd smbuild
|
||||||
meson .. \
|
meson .. \
|
||||||
--prefix="/"
|
--prefix="/"
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
CFLAGS="-O2 -static" \
|
LDFLAGS="-static" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=""
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix=""
|
||||||
--sysconfdir=/etc
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -22,7 +22,7 @@ build() {
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
cp README $pkgdocs/
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue