1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/main/tree/APKBUILD
2022-12-27 09:11:18 +01:00

25 lines
771 B
Text

# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=tree
pkgver=2.1.0
pkgrel=0
pkgdesc="A recursive directory indented listing of files"
url="https://oldmanprogrammer.net/source.php?dir=projects/tree"
arch="all"
license="GPL-2.0-or-later"
makedepends="$depends_dev"
subpackages="$pkgname-doc"
source="https://gitlab.com/OldManProgrammer/unix-tree/-/archive/$pkgver/unix-tree-$pkgver.tar.gz"
builddir="$srcdir/unix-tree-$pkgver"
options="!check" # no tests
build() {
make LDFLAGS="$LDFLAGS" CFLAGS="$CFLAGS"
}
package() {
make PREFIX="$pkgdir/usr" MANDIR="$pkgdir/usr/share/man" install
}
sha512sums="
8e9c1e91d40a4719f99ac26b686e40a21d083b1d2b2a73b933e4b46056acddc63044ff50e24d827399d7118e41c7199891c204c180759de1e8f5e7c658866a39 unix-tree-2.1.0.tar.gz
"