diff options
author | takiz | 2018-10-10 20:39:43 +0500 |
---|---|---|
committer | takiz | 2018-10-10 20:39:43 +0500 |
commit | a1ea4288e6a11fd595e3cd8ec4835ecd71146d26 (patch) | |
tree | 6dd62d1c68e26d78fec8db01047e86e084f0cc77 | |
download | aur-a1ea4288e6a11fd595e3cd8ec4835ecd71146d26.tar.gz |
Initial
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..defc624b7839 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = aur-search + pkgdesc = Arch Linux search tool for AUR + pkgver = 1.0 + pkgrel = 1 + url = https://github.com/takiz/aur-search + arch = any + license = MIT + depends = bash + depends = jq + depends = coreutils + depends = util-linux + source = https://github.com/takiz/aur-search/archive/1.0.tar.gz + sha256sums = 362244aebe3a02e978bef3d95d335d19459725770369c9c8a6391a4b32282ffd + +pkgname = aur-search + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..6742e6661ed4 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: takiz <tacidd@gmail.com> + +pkgname=aur-search +pkgver=1.0 +pkgrel=1 +pkgdesc="Arch Linux search tool for AUR" +arch=(any) +url="https://github.com/takiz/aur-search" +license=(MIT) +depends=(bash jq coreutils util-linux) +source=(https://github.com/takiz/aur-search/archive/$pkgver.tar.gz) +sha256sums=('362244aebe3a02e978bef3d95d335d19459725770369c9c8a6391a4b32282ffd') + +package() { + cd $pkgname-$pkgver + make PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/aur-search/LICENSE" +} |