mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
feat(packaging_aur)!: experimental usage of just
instead of direct commands
This commit is contained in:
parent
8b50c54140
commit
ff628935b4
1 changed files with 8 additions and 7 deletions
|
@ -7,7 +7,7 @@ pkgdesc="GIT - A standalone Luau script runtime"
|
|||
arch=('any')
|
||||
url="https://github.com/filiptibell/lune"
|
||||
license=('MPL')
|
||||
makedepends=('rust')
|
||||
makedepends=('just' 'rust')
|
||||
provides=('lune')
|
||||
conflicts=('lune')
|
||||
source=("git+$url.git")
|
||||
|
@ -27,12 +27,13 @@ build() {
|
|||
cd "$srcdir/lune"
|
||||
|
||||
git checkout $pkgver
|
||||
cargo build --release
|
||||
just build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/lune"
|
||||
cargo test -- --test-threads 1
|
||||
|
||||
just test
|
||||
}
|
||||
|
||||
package() {
|
||||
|
|
Loading…
Reference in a new issue