Removed gcc from .gitignore

Fixed installation paths in base/cbindgen,libffi,mdadm
This commit is contained in:
PktSurf 2024-11-05 16:41:34 +05:30
parent e10666c40c
commit ccd3a8ef8d
4 changed files with 6 additions and 5 deletions

1
.gitignore vendored
View file

@ -17,7 +17,6 @@ incomplete
incomplete.n incomplete.n
waf-2.0.9 waf-2.0.9
*.img.xz *.img.xz
gcc
libreoffice libreoffice
others others
networkmanager networkmanager

View file

@ -19,7 +19,7 @@ prepbuilddir() {
build() { build() {
RUSTONIG_DYNAMIC_LIBONIG=1 \ RUSTONIG_DYNAMIC_LIBONIG=1 \
cargo build --release --target $arch-unknown-linux-musl $MAKEFLAGS cargo build --release --target $arch-unknown-linux-musl $MAKEFLAGS
install -Dm 755 target/$arch-unknown-linux-musl/release/cbindgen $pkg/bin/cbindgen install -Dm 755 target/$arch-unknown-linux-musl/release/cbindgen $pkg/usr/bin/cbindgen
cp LICENSE $pkgdocs/ cp LICENSE $pkgdocs/

View file

@ -19,8 +19,10 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--disable-static --libdir=/usr/lib \
--disable-static
sed -i 's@lib64@lib@g' Makefile x86_64*/Makefile x86_64*/$app.pc
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -26,8 +26,8 @@ prepbuilddir() {
} }
build() { build() {
make make BINDIR=/usr/bin
make install DESTDIR="$pkg" make install BINDIR=/usr/bin DESTDIR="$pkg"
install -Dm 644 mdadm.conf-example $pkg/etc/mdadm.conf.new install -Dm 644 mdadm.conf-example $pkg/etc/mdadm.conf.new
cp COPYING $pkgdocs/ cp COPYING $pkgdocs/