blob: d16cd7fd7abc3b363c44f172ee39a238c6b8da21 (
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
26
27
28
|
# Maintainer: daniel de souza telles <danieldesouzatelles at gmail dot com>
pkgname=buku-rofi-git
_pkgname=buku-rofi
pkgver=1.0
pkgrel=1
pkgdesc="rofi frontend for buku bookmarks manager"
arch=('any')
url='https://gitlab.com/lbcnz/agnostic-browser'
provides=('buku-rofi')
license=('GPL')
depends=('gawk' 'buku' 'rofi')
makedepends=('git')
source=("git+https://gitlab.com/lbcnz/${_pkgname}.git")
pkgver() {
cd "${_pkgname}"
printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${_pkgname}"
make DESTDIR="$pkgdir/" \
PREFIX='/usr' \
install
}
md5sums=('SKIP')
|