mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-26 08:02:26 +02:00
29 lines
649 B
Plaintext
29 lines
649 B
Plaintext
# Contributor: Michael Mason <ms13sp@gmail.com>
|
|
# Maintainer: Michael Mason <ms13sp@gmail.com>
|
|
pkgname=findutils
|
|
pkgver=4.4.2
|
|
pkgrel=2
|
|
pkgdesc="GNU utilities for finding files"
|
|
url="http://www.gnu.org/software/findutils/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
makedepends=""
|
|
install=
|
|
subpackages="$pkgname-doc"
|
|
source="http://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|
|
|
|
md5sums="351cc4adb07d54877fa15f75fb77d39f findutils-4.4.2.tar.gz"
|