summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 74f7c6e889f42a5d61675cb0fcfb9759da3b3298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: DevHyperCoder <arduinoleo88 at gmail dot com>

_pkgname=rbmenu
pkgname=$_pkgname-bin
pkgver=0.6.2
pkgrel=3
pkgdesc="Rust Bookmark (d)Menu ; Pre compiled binary"
arch=('x86_64')
url="https://github.com/DevHyperCoder/rbmenu"
license=('GPL')
provides=("${pkgname}")
conflicts=("${pkgname}")
source=("${url}/releases/download/v${pkgver}/${_pkgname}-${pkgver}.zip")
noextract=()
md5sums=('SKIP')

package() {
	cd "$srcdir/"
    mv "$_pkgname-v$pkgver" $_pkgname
    install -Dm755 "$_pkgname" \
        -t "$pkgdir/usr/bin/"
    install -Dm644 "${_pkgname}.1" \
        "$pkgdir/usr/share/man/man1/${_pkgname}.1"

}