blob: d293f5a83b36ce1b60e4d090bb2589dc5675e963 (
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
|
# Maintainer (Arch): Vlad M. <vlad@archlinux.net>
# Contributor (Arch): Håvard Pettersson <mail@haavard.me>
# Contributor (Arch): Madotsuki <madotsuki at cock dot li>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=utox
_pkgname=uTox
pkgver=0.8.1
pkgrel=1
pkgdesc='Lightweight Tox client'
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/GrayHatter/uTox"
license=('GPL3')
depends=('desktop-file-utils'
'fontconfig'
'libfilteraudio-git'
'hicolor-icon-theme'
'libdbus'
'libxext'
'libxrender'
'openal'
'toxcore'
'v4l-utils')
optdepends=('gtk3: GTK file picker')
makedepends=('toxcore')
source=("https://github.com/GrayHatter/$_pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('34813bbaa48edc8f21e3505e99256d6246f733c81817368b3e32c2b4f2e57117')
install="$pkgname.install"
build() {
cd "$_pkgname-$pkgver"
make
}
package() {
cd "$_pkgname-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|