blob: 64d7255824c1026fa52b615aa0d0d702ef7d3074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# $Id: PKGBUILD 210105 2014-04-09 22:22:03Z thomas $
# Maintainer: Tom Gundersen <teg@jklm.no>
# Maintainer: Dave Reisner <dreisner@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgbase=util-linux
pkgname=(util-linux libutil-linux)
pkgver=2.24.1
pkgrel=6
pkgdesc="Miscellaneous system utilities for Linux"
url="http://www.kernel.org/pub/linux/utils/util-linux/"
arch=('i686' 'x86_64')
groups=('base' 'base-devel')
makedepends=('systemd' 'python')
# checkdepends=('bc')
license=('GPL2')
options=('strip' 'debug')
source=("ftp://ftp.kernel.org/pub/linux/utils/$pkgname/v2.24/$pkgname-$pkgver.tar.xz"
uuidd.tmpfiles
pam-login
pam-common
pam-su
move_is_mountinfo.patch
0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
md5sums=('88d46ae23ca599ac5af9cf96b531590f'
'a39554bfd65cccfd8254bb46922f4a67'
'4368b3f98abd8a32662e094c54e7f9b1'
'a31374fef2cba0ca34dfc7078e2969e4'
'fa85e5cce5d723275b14365ba71a8aad'
'4cdc5f9a6e51b032274761a82937d438'
'b7ca79a0d5318b7cd813bb2573a3f9a9'
'2f4bc305bd11d6bfaa81e6c1eb0c6f1b')
prepare() {
cd "$pkgname-$pkgver"
patch -p1 -i "${srcdir}/move_is_mountinfo.patch"
patch -p1 -i "${srcdir}/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch"
patch -p1 -i "${srcdir}/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch"
}
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--libdir=/usr/lib \
--bindir=/usr/bin \
--localstatedir=/run \
--enable-fs-paths-extra=/usr/bin \
--enable-raw \
--enable-vipw \
--enable-newgrp \
--enable-chfn-chsh \
--enable-write \
--enable-mesg \
--enable-socket-activation \
--with-python=3
# --enable-reset \ # part of ncurses
# --enable-last \ # not compat
make
}
#check() {
# fails for some reason in chroot, works outside
# make -C "$pkgname-$pkgver" check
#}
package_util-linux() {
conflicts=('util-linux-ng' 'eject')
provides=("util-linux-ng=$pkgver" 'eject')
depends=('pam' 'shadow' 'coreutils' 'libsystemd' 'libutil-linux')
optdepends=('python: python bindings to libmount')
install=util-linux.install
backup=(etc/pam.d/chfn
etc/pam.d/chsh
etc/pam.d/login
etc/pam.d/su
etc/pam.d/su-l)
cd "$pkgname-$pkgver"
make DESTDIR="${pkgdir}" install
# setuid chfn and chsh
chmod 4755 "$pkgdir"/usr/bin/{newgrp,ch{sh,fn}}
# install PAM files for login-utils
install -Dm644 "$srcdir/pam-common" "$pkgdir/etc/pam.d/chfn"
install -m644 "$srcdir/pam-common" "$pkgdir/etc/pam.d/chsh"
install -m644 "$srcdir/pam-login" "$pkgdir/etc/pam.d/login"
install -m644 "$srcdir/pam-su" "${pkgdir}/etc/pam.d/su"
install -m644 "$srcdir/pam-su" "${pkgdir}/etc/pam.d/su-l"
# include tmpfiles fragment for uuidd
# TODO(dreisner): offer this upstream?
install -Dm644 "$srcdir/uuidd.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/uuidd.conf"
# usrmove
cd "$pkgdir"
mv {,usr/}sbin/* usr/bin
rmdir sbin usr/sbin
### create libutil-linux split
rm -rf "$srcdir/_libutil-linux"
install -dm755 "$srcdir"/_libutil-linux/usr/lib
cd "$srcdir"/_libutil-linux
mv "$pkgdir"/usr/lib/lib*.{a,so}* usr/lib
}
package_libutil-linux() {
pkgdesc="util-linux runtime libraries"
provides=('libblkid.so' 'libmount.so' 'libuuid.so')
mv "$srcdir/_libutil-linux"/* "$pkgdir"
}
|