as-tree
as-tree copied to clipboard
AUR package
Hey folks!
I like this package. It can be pretty useful sometimes. Are there any plans on creating an AUR package?
Hey, I don’t use Arch and I’ve never packaged anything for AUR. If you create a package I’d be happy to mention it in the README.
@Trollwut You can use the PKGBUILD below. I don't want to maintain an AUR package, however, because I'm not using as-tree
since tree
satisfies my needs (see #11).
# Contributor: donbex <ap dot m at runbox dot com>
pkgname=as-tree
pkgver=0.12.0
pkgrel=1
pkgdesc="Print a list of paths as a tree of paths"
arch=('x86_64')
url="https://github.com/jez/as-tree"
license=('custom:BOML')
depends=('gcc-libs')
makedepends=('cargo')
#checkdepends=()
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jez/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=('77cf5584fced10b16c53ccb4c25224f7')
prepare() {
cd "$pkgname-$pkgver"
# Update the lock file. Shouldn't be needed with releases after v0.12.0.
sed -i "s/version = \"0.11.1\"/version = \"${pkgver}\"/" Cargo.lock
}
build() {
cd "$pkgname-$pkgver"
cargo build --release --locked --all-features --target-dir=target
}
package() {
cd "$pkgname-$pkgver"
install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
install -Dm 644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
}
as-tree is available on the AUR (https://aur.archlinux.org/packages/as-tree/), so I think this ticket can be closed.