summaryrefslogtreecommitdiffstats
path: root/abs/core/util-linux/PKGBUILD
blob: 72df84cb5998c384dd5408eb02daf560f284f180 (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
# $Id$
# 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)
_pkgmajor=2.29
pkgver=${_pkgmajor}
pkgrel=1
pkgdesc="Miscellaneous system utilities for Linux"
url="https://www.kernel.org/pub/linux/utils/util-linux/"
arch=('i686' 'x86_64')
makedepends=('systemd' 'python2')
license=('GPL2')
options=('strip' 'debug')
validpgpkeys=('B0C64D14301CC6EFAEDF60E4E4B71D5EEC39C284')  # Karel Zak
source=("https://www.kernel.org/pub/linux/utils/util-linux/v$_pkgmajor/$pkgbase-$pkgver.tar."{xz,sign}
        pam-{login,common,su}
        '0001-sfdisk-don-t-be-silent-when-list-non-existing-device.patch'
        '0001-sfdisk-cleanup-dump-error-messages.patch'
        '0001-sfdisk-support-empty-label-use-case.patch'
        '0001-chrt-default-to-SCHED_RR-policy.patch'
        '0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch')
md5sums=('07b6845f48a421ad5844aa9d58edb837'
         'SKIP'
         '4368b3f98abd8a32662e094c54e7f9b1'
         'a31374fef2cba0ca34dfc7078e2969e4'
         'fa85e5cce5d723275b14365ba71a8aad'
         '3fce7192ce1b3d97fdffd0226ed63a90'
         '2f3c061865360170cacda948035fd02d'
         '6d2e3915124938577f0ff18ef701c87f'
         '168c1cb2cfe7d4eddfc6e3f3b19d3ced'
         '68c2076a9a09564ba0c9776540a175fa')

prepare() {
  cd "$pkgbase-$pkgver"

  patch -Np1 <../0001-sfdisk-don-t-be-silent-when-list-non-existing-device.patch
  patch -Np1 <../0001-sfdisk-cleanup-dump-error-messages.patch
  patch -Np1 <../0001-sfdisk-support-empty-label-use-case.patch
  patch -Np1 <../0001-chrt-default-to-SCHED_RR-policy.patch
  patch -Np1 <../0001-lsns-Fix-parser-for-proc-pid-stat-which-is-including.patch
}

build() {
  cd "$pkgbase-$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 \
              --disable-tailf \
              --with-python=2

  make
}

package_util-linux() {
  conflicts=('util-linux-ng' 'eject' 'zramctl')
  provides=("util-linux-ng=$pkgver" 'eject' 'zramctl')
  replaces=('zramctl')
  depends=('pam' 'shadow' 'coreutils' 'libsystemd' 'libutil-linux')
  optdepends=('python2: python bindings to libmount')
  groups=('base' 'base-devel')
  backup=(etc/pam.d/chfn
          etc/pam.d/chsh
          etc/pam.d/login
          etc/pam.d/su
          etc/pam.d/su-l)

  cd "$pkgbase-$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"

  # TODO(dreisner): offer this upstream?
  sed -i '/ListenStream/ aRuntimeDirectory=uuidd' "$pkgdir/usr/lib/systemd/system/uuidd.socket"

  # adjust for usrmove
  # TODO(dreisner): fix configure.ac upstream so that this isn't needed
  cd "$pkgdir"
  mv {,usr/}sbin/* usr/bin
  rmdir sbin usr/sbin

  ### runtime libs are shipped as part of libutil-linux
  rm "$pkgdir"/usr/lib/lib*.{a,so}*

  ### tailf has been deprecated for a while. let's not include it anymore.
  rm \
    "$pkgdir"/usr/bin/tailf \
    "$pkgdir"/usr/share/bash-completion/completions/tailf \
    "$pkgdir"/usr/share/man/man1/tailf.1
}

package_libutil-linux() {
  pkgdesc="util-linux runtime libraries"
  provides=('libblkid.so' 'libfdisk.so' 'libmount.so' 'libsmartcols.so' 'libuuid.so')

  make -C "$pkgbase-$pkgver" DESTDIR="$pkgdir" install-usrlib_execLTLIBRARIES
}