mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 01:34:38 +08:00
27 lines
650 B
Bash
27 lines
650 B
Bash
# $Id$
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=tree
|
|
pkgver=1.6.0
|
|
pkgrel=2
|
|
pkgdesc="A directory listing program displaying a depth indented list of files"
|
|
arch=('i686' 'x86_64')
|
|
url="http://mama.indstate.edu/users/ice/tree/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=("http://mama.indstate.edu/users/ice/${pkgname}/src/${pkgname}-${pkgver}.tgz")
|
|
md5sums=('04e967a3f4108d50cde3b4b0e89e970a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make prefix="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man/man1" install
|
|
}
|