-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AUR package #7
Comments
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 # 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. |
Hey folks!
I like this package. It can be pretty useful sometimes. Are there any plans on creating an AUR package?
The text was updated successfully, but these errors were encountered: