diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2019-09-23 22:52:22 +0530 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-23 17:20:16 -0300 |
commit | a0a4a1493be4b52294f84fe5859231e93b4d5a20 (patch) | |
tree | e1ce327bb6c14e51f1f1e42986a3b0cc82a92b16 /testing/z/APKBUILD | |
parent | af60dc36a11a504371d494adfb009ec214bd8875 (diff) | |
download | aports-a0a4a1493be4b52294f84fe5859231e93b4d5a20.tar.bz2 aports-a0a4a1493be4b52294f84fe5859231e93b4d5a20.tar.xz |
testing/z: new aport
Tracks your most used directories, based on 'frecency'
https://github.com/rupa/z
Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Diffstat (limited to 'testing/z/APKBUILD')
-rw-r--r-- | testing/z/APKBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/z/APKBUILD b/testing/z/APKBUILD new file mode 100644 index 0000000000..400501a3b1 --- /dev/null +++ b/testing/z/APKBUILD @@ -0,0 +1,21 @@ +# Contributor: Anirudh Oppiliappan <x@icyphox.sh> +# Maintainer: Anirudh Oppiliappan <x@icyphox.sh> +pkgname="z" +pkgver="1.11" +pkgrel=0 +pkgdesc="Tracks your most used directories, based on 'frecency'" +url="https://github.com/rupa/z" +arch="noarch" +license="WTFPL" +install="$pkgname.post-install" +options="!check" # No testsuite +source="z-$pkgver.tar.gz::https://github.com/rupa/z/archive/v$pkgver.tar.gz" +subpackages="$pkgname-doc" + +package() { + install -Dm 644 z.sh "$pkgdir"/usr/share/$pkgname/z.sh + sed -i z.1 -e 's:/path/to/z.sh:/usr/share/"$pkgname"/z.sh:g' + install -Dm 644 z.1 "$pkgdir"/usr/share/man/man1/z.1 +} + +sha512sums="e8463f8fe2781ff12814e47b1764ddc46875a3a01c0499cb174473df16ba28ea16c2577f7ec27a088c5bd98775ac29f81190b3131d4a953315f01be4e2d548c5 z-1.11.tar.gz" |