mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-28 08:52:07 +01:00
35 lines
779 B
Plaintext
35 lines
779 B
Plaintext
# Contributor: Дмитрий <wakoo1337@yandex.ru>
|
|
maintainer="Дмитрий <wakoo1337@yandex.ru>"
|
|
pkgname=samefile
|
|
pkgver=2.14
|
|
pkgrel=0
|
|
pkgdesc="Finds files with identical contents, independent of file name"
|
|
url="http://www.schweikhardt.net/samefile/"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
subpackages="$pkgname-doc"
|
|
source="http://www.schweikhardt.net/samefile-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
33746461ee2dc7eb36e216f5e71411c836c2230e2a734b506577886bbf953e3448b3d8fa622eedb76c9f5160465a7c300b71e0e3fc61c9fc7fa0acaed4dd6905 samefile-2.14.tar.gz
|
|
"
|