Skip to content

Commit 9ec6739

Browse files
committed
xfsprogs: adjust the build to meet package styling
1 parent fc9cf45 commit 9ec6739

File tree

3 files changed

+28
-54
lines changed

3 files changed

+28
-54
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
abinfo "Installing xfsprogs dev ..."
2+
make install-dev V=1 VERBOSE=1 \
3+
BUILDROOT="$PKGDIR" DESTDIR="$PKGDIR"
4+
5+
if [ -d "$PKGDIR"/usr/lib64 ]; then
6+
abinfo "Moving /usr/lib64 => /usr/lib ..."
7+
mkdir -pv "$PKGDIR"/usr/lib
8+
mv -v "$PKGDIR"/usr/lib64/* "$PKGDIR"/usr/lib/
9+
rmdir "$PKGDIR"/usr/lib64
10+
fi
11+
12+
abinfo "Removing the empty /var ..."
13+
rm -rv "$PKGDIR"/var

app-admin/xfsprogs/autobuild/build

Lines changed: 0 additions & 39 deletions
This file was deleted.

app-admin/xfsprogs/autobuild/defines

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ ABSHADOW=0
77
RECONF=0
88
NOPARALLEL=1
99

10-
AUTOTOOLS_AFTER="--enable-shared \
11-
--enable-gettext \
12-
--enable-blkid \
13-
--enable-editline \
14-
--disable-termcap \
15-
--enable-lib64 \
16-
--enable-librt \
17-
--disable-ubsan \
18-
--disable-addrsan \
19-
--disable-threadsan \
20-
--enable-lto \
21-
--enable-scrub \
22-
--enable-libicu"
23-
MAKE_AFTER="DIST_ROOT=$PKGDIR \
24-
PKG_ROOT_SBIN_DIR=/usr/bin"
10+
ABTYPE=autotools
11+
AUTOTOOLS_AFTER=(
12+
"--enable-shared"
13+
"--enable-gettext"
14+
"--enable-editline"
15+
"--disable-termcap"
16+
"--enable-lib64"
17+
"--enable-librt"
18+
"--disable-ubsan"
19+
"--disable-addrsan"
20+
"--disable-threadsan"
21+
"--enable-lto"
22+
"--enable-scrub"
23+
"--enable-libicu"
24+
)

0 commit comments

Comments
 (0)