diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
| commit | dea2a1fa20fc8e843cd85e5920a67b9054d00b2e (patch) | |
| tree | f331ff92dc5fd26f5803b483a24a0a21fd9bb97a /repos/core/musl/abuild | |
| parent | ef5bfeb93345a5a681d88e99775622bf28defd8d (diff) | |
| download | alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.tar.gz alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.zip | |
Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI]
Diffstat (limited to 'repos/core/musl/abuild')
| -rw-r--r-- | repos/core/musl/abuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/repos/core/musl/abuild b/repos/core/musl/abuild deleted file mode 100644 index 3f229dbf..00000000 --- a/repos/core/musl/abuild +++ /dev/null @@ -1,43 +0,0 @@ -name=musl -version=1.2.6 -release=2 -source="https://www.musl-libc.org/releases/musl-$version.tar.gz - getconf.c - getconf.1 - getent.c - getent.1 - iconv.c - tree.h - queue.h - cdefs.h - elfutils-0.190-relr.patch - default-locpath.patch" -keep_static=1 - -build() { - ./configure \ - --prefix=/usr #\ - #--syslibdir=/usr/lib - make - make DESTDIR=$PKG install - - mkdir -p $PKG/usr/bin - ln -sf ../lib/libc.so $PKG/usr/bin/ldd - mkdir -p $PKG/sbin - echo "#!/bin/sh - /bin/true" > $PKG/sbin/ldconfig - chmod +x $PKG/sbin/ldconfig - - for i in getent getconf iconv; do - ${CC:-gcc} $CFLAGS $LDFLAGS -fpie $SRC/$i.c -o $PKG/usr/bin/$i - done - - mkdir -p $PKG/usr/share/man/man1 - install -m644 $SRC/getconf.1 $PKG/usr/share/man/man1 - #install -m644 $SRC/getent.1 $PKG/usr/share/man/man1 - - # bsdcompat headers - for h in tree.h queue.h cdefs.h; do - install -D $SRC/$h $PKG/usr/include/sys/ - done -} |