util-linux-ng: set tty group to wall(1)/write(1) via INSTALL script.
--HG-- extra : convert_revision : c8023146e2d69937d7f2bce5aaf9f3ca74a95084
This commit is contained in:
parent
00b00c3054
commit
4cb02d243d
2 changed files with 14 additions and 1 deletions
10
srcpkgs/util-linux-ng/INSTALL
Normal file
10
srcpkgs/util-linux-ng/INSTALL
Normal file
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# This script fixes group owner in some files.
|
||||
#
|
||||
case "${ACTION}" in
|
||||
post)
|
||||
# Change group in some files.
|
||||
bin/chgrp tty usr/bin/write usr/bin/wall
|
||||
[ $? -eq 0 ] && echo "Setting 'tty' group to wall(1) and write(1)."
|
||||
;;
|
||||
esac
|
|
@ -1,10 +1,12 @@
|
|||
# Template file for 'util-linux-ng'
|
||||
pkgname=util-linux-ng
|
||||
version=2.17.2
|
||||
revision=1
|
||||
distfiles="${KERNEL_SITE}/utils/$pkgname/v2.17/$pkgname-$version.tar.bz2"
|
||||
build_style=gnu_configure
|
||||
configure_args="--enable-partx --enable-write --enable-libuuid
|
||||
--enable-libblkid --disable-fsck --disable-rpath --with-gnu-ld"
|
||||
--enable-libblkid --disable-fsck --disable-rpath --with-gnu-ld
|
||||
--disable-makeinstall-chown"
|
||||
short_desc="Miscellaneous linux utilities"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=c9ae801b6a5ab20b7749a278a8bf6830ef53adc5e8b7eb0ac1a9f410c774118f
|
||||
|
@ -23,6 +25,7 @@ Add_dependency run zlib
|
|||
Add_dependency run libuuid
|
||||
Add_dependency run libblkid
|
||||
Add_dependency run ncursesw
|
||||
Add_dependency run shadow
|
||||
Add_dependency build pkg-config
|
||||
Add_dependency build gettext
|
||||
Add_dependency build zlib-devel
|
||||
|
|
Loading…
Reference in a new issue