desktop/debianutils/PKGBUILD
Adrián Chaves Fernández 418e1ebfd2 debianutils 4.8
2016-08-19 18:22:51 +02:00

35 lines
1.1 KiB
Bash

pkgname=debianutils
pkgver=4.8
pkgrel=1
pkgdesc="Utility programs from Debian."
url="http://packages.debian.org/source/sid/debianutils"
arch=('x86_64')
license=('GPL')
depends=('glibc')
categories=('utils')
source=("http://ftp.de.debian.org/debian/pool/main/d/debianutils/debianutils_${pkgver}.tar.xz")
sha256sums=('afa95bbe6b6fd3ef3c0c838b2d7232f09fabeff593ca4b5583cffa6748567ee2')
build() {
cd "${srcdir}/${pkgname}-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-$pkgver"
make DESTDIR="${pkgdir}" install
msg "Removing files already provided by the \"which\" package..."
rm "${pkgdir}/usr/bin/which"
find "${pkgdir}/usr/share/man" -name 'which.1' -delete
msg "Removing files already provided by the \"run-parts\" package..."
rm "${pkgdir}/usr/bin/run-parts"
find "${pkgdir}/usr/share/man" -name 'run-parts.8' -delete
msg "Removing the \"installkernel\" utility, which is probably too Debian-specific to work here..."
rm "${pkgdir}/usr/sbin/installkernel"
find "${pkgdir}/usr/share/man" -name 'installkernel.8' -delete
}