Skip to content

Commit

Permalink
chore: add PKGBUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
fioncat committed Dec 25, 2024
1 parent 7800204 commit 2c7cc19
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Maintainer: Wenqian <[email protected]>

pkgname=roxide
pkgver=0.17.4
pkgrel=1
pkgdesc="A git repositories manager CLI, easy to use and very fast"
arch=('x86_64')
url="https://github.com/fioncat/roxide"
license=('MIT')
depends=('git' 'fzf')
provides=('roxide')
conflicts=('roxide')

source=("$pkgname-$pkgver::https://github.com/fioncat/roxide/releases/download/v${pkgver}/roxide-x86_64-unknown-linux-gnu.tar.gz")
sha256sums=('8b44377d537e453fb07f5ffc5cdafbda0e6732c0179eaff2d17a47cef992fa8a')

package() {
install -Dm755 "roxide" "$pkgdir/usr/bin/roxide"
}

0 comments on commit 2c7cc19

Please sign in to comment.