diff options
author | Tim Biermann <tbier@posteo.de> | 2021-02-20 14:53:06 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-02-20 14:53:06 +0000 |
commit | 6ef78f30cdb8cdecdee50f222244f24c813e621f (patch) | |
tree | 6bac388110d1bdaedf9db0f96f13cdb8acd86a3e /exa | |
parent | 6a74b74c23763dc1bc706189fa630edc77a9229d (diff) | |
download | contrib-6ef78f30cdb8cdecdee50f222244f24c813e621f.tar.gz contrib-6ef78f30cdb8cdecdee50f222244f24c813e621f.tar.xz |
exa: updated footprint
Diffstat (limited to 'exa')
-rw-r--r-- | exa/.footprint | 4 | ||||
-rw-r--r-- | exa/.signature | 6 | ||||
-rw-r--r-- | exa/Pkgfile | 15 |
3 files changed, 10 insertions, 15 deletions
diff --git a/exa/.footprint b/exa/.footprint index bb8598a76..8b6762439 100644 --- a/exa/.footprint +++ b/exa/.footprint @@ -1,7 +1,3 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/exa -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/zsh/ -drwxr-xr-x root/root usr/share/zsh/site-functions/ --rw-r--r-- root/root usr/share/zsh/site-functions/_exa diff --git a/exa/.signature b/exa/.signature index 62c2eb96e..048330edc 100644 --- a/exa/.signature +++ b/exa/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF34ZvbukSywFoN4Ta/4bj3Tn/0XaEWIRCml4ngmwzo3T0RnPaiEMUrUNTXLMrshbxEMnl6vTGwUkiRfNXy8XrcQ4= -SHA256 (Pkgfile) = 42862fb00d7b8590967a04bd580f6fa8f4225298e557dac894cdb555fb20cee4 -SHA256 (.footprint) = ff023c44a454e057d4a4ae8d3389d716bd6d1e0dd873e991de8f1e7eb628127b +RWSagIOpLGJF3xJefYdztt1ifdUJ4jbcWEcbcnDVpagqGLEn8Zvdd/r/0kX+q9YEre6FNHud8sXYjKrewKfPXVwNVTtlSqLNiwk= +SHA256 (Pkgfile) = e670bdb74ff13ed7723fe11ad0968d871753f6ed586492b29eb7c49a4034e769 +SHA256 (.footprint) = bc31d95b8c11ef950831c0aaa1721d3a40aa918182ea44bd94d88b9b212d02d6 SHA256 (exa-0.9.0.tar.gz) = 96e743ffac0512a278de9ca3277183536ee8b691a46ff200ec27e28108fef783 diff --git a/exa/Pkgfile b/exa/Pkgfile index 3cebb54dc..ca1856aa7 100644 --- a/exa/Pkgfile +++ b/exa/Pkgfile @@ -9,23 +9,22 @@ release=1 source=(https://github.com/ogham/exa/archive/v$version/$name-$version.tar.gz) build() { - cd $name-$version prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache mkdir "$PKGMK_SOURCE_DIR/rust" || true export CARGO_HOME="$PKGMK_SOURCE_DIR/rust" - cargo update - cargo fetch - cargo build --release --locked - install -Dt $PKG/usr/bin target/release/exa + cargo update --manifest-path $name-$version/Cargo.toml + cargo fetch --manifest-path $name-$version/Cargo.toml + cargo build --release --locked --manifest-path $name-$version/Cargo.toml + install -Dt $PKG/usr/bin $name-$version/target/release/exa # install auto-completion files if the ports for it are installed - if [ -e /usr/share/zsh ]; then - install -Dm644 contrib/completions.zsh \ + if [ -e /usr/bin/zsh ]; then + install -Dm644 $name-$version/contrib/completions.zsh \ $PKG/usr/share/zsh/site-functions/_$name fi if [ -e /usr/lib/pkgconfig/bash-completion.pc ]; then - install -Dm644 contrib/completions.bash \ + install -Dm644 $name-$version/contrib/completions.bash \ $PKG/usr/share/bash-completion/completions/$name fi } |