blob: f80f5df23fad809e0455042e8be3bd2bc4e312aa (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Helder Bertoldo <helder.bertoldo@gmail.com>
# Contributor:
_gitname=Translator
_author=RapidFingers
_auxname=translator
pkgname=("${_auxname}-git")
pkgver=r98.7b14a43
pkgrel=1
pkgdesc="Translater app that uses Yandex API designed for Pantheon. Donate Link: http://bit.do/Translator_Donate"
arch=('i686' 'x86_64')
url="https://github.com/${_author}/${_gitname}"
license=('GPL3')
depends=('gtk3' 'granite' 'glib2' 'json-glib' 'libgee' 'libsoup')
optdepends=()
makedepends=('git' 'meson' 'vala')
provides=("${_auxname}")
conflicts=("${_auxname}")
source=("git+${url}.git")
md5sums=('SKIP')
pkgver() {
cd "${_gitname}"
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${_gitname}/"
meson . _build --prefix=/usr
ninja -C _build
}
package() {
cd "${_gitname}/"
DESTDIR="${pkgdir}" ninja -C _build install
}
|