mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
|
|
pkgname=coreutils
|
|
pkgver=7.4
|
|
pkgrel=1
|
|
pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system"
|
|
arch=('arm')
|
|
license=('GPL3')
|
|
url="http://www.gnu.org/software/coreutils"
|
|
groups=('base')
|
|
depends=('glibc>=2.9' 'shadow>=4.1.2.1' 'pam>=1.0.3' 'acl>=2.2.47' 'gmp>=4.2.4')
|
|
provides=('mktemp')
|
|
conflicts=('mktemp')
|
|
replaces=('sh-utils' 'fileutils' 'textutils' 'mktemp')
|
|
backup=('etc/pam.d/su')
|
|
options=('!emptydirs')
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz su)
|
|
|
|
build() {
|
|
cd "$srcdir/coreutils-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-install-program=su \
|
|
--enable-pam ac_cv_func_openat=no || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
|
|
# Remove binaries provided by other packages.
|
|
for f in hostname uptime groups kill; do
|
|
rm -f $pkgdir/usr/bin/$f
|
|
done
|
|
|
|
cd $pkgdir/usr/bin
|
|
install -dm755 $pkgdir/{bin,sbin,usr/sbin}
|
|
mv su date echo false pwd stty true uname cat tr cut readlink $pkgdir/bin
|
|
mv dd cp df du ln ls mv rm dir sync vdir chgrp chmod chown $pkgdir/bin
|
|
mv mkdir mknod rmdir shred touch mkfifo dircolors install sleep $pkgdir/bin
|
|
mv chroot $pkgdir/usr/sbin
|
|
ln -sf test [
|
|
ln -sf /bin/sleep $pkgdir/usr/bin/sleep
|
|
install -Dm644 $srcdir/su $pkgdir/etc/pam.d/su
|
|
|
|
chmod -v 4555 $pkgdir/bin/su
|
|
}
|
|
|
|
# vim: set ft=sh ts=2 sw=2 et:
|