Date: Tuesday, February 21, 2023 @ 14:50:49
Author: alucryd
Revision: 1403265
db-move: moved toxic from [community-staging] to [community-testing] (x86_64)
Added:
toxic/repos/community-testing-x86_64/
toxic/repos/community-testing-x86_64/PKGBUILD
(from rev 1403264, toxic/repos/community-staging-x86_64/PKGBUILD)
toxic/repos/community-testing-x86_64/keys/
Deleted:
toxic/repos/community-staging-x86_64/
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: toxic/repos/community-testing-x86_64/PKGBUILD (from rev 1403264,
toxic/repos/community-staging-x86_64/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-02-21 14:50:49 UTC (rev 1403265)
@@ -0,0 +1,36 @@
+# Maintainer: Jiachen Yang <[email protected]>
+# AUR Maintainer: Vlad M. <[email protected]>
+
+pkgname=toxic
+pkgdesc='CLI Tox client'
+license=('GPL3')
+pkgver=0.11.3
+pkgrel=3
+depends=('curl'
+ 'freealut'
+ 'libnotify'
+ 'qrencode'
+ 'libx11'
+ 'toxcore')
+arch=('x86_64')
+url='https://github.com/JFreegman/toxic'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc"
+ )
+sha512sums=('a0ca010067a07ac10ab1ca3f4e46184cf0d99db2a1a719de2ef5fadde3754435bc5259107b9982c2914e10f6d2d732df9a86957d144479e8c6276fbf47f9620d'
+ 'SKIP')
+validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63') # Jfreegman
<[email protected]>
+
+prepare() {
+ cd "$pkgname-$pkgver"
+}
+
+build() {
+ cd "$pkgname-$pkgver"
+ make PREFIX=/usr DISABLE_GAMES=1
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make PREFIX=/usr DESTDIR="$pkgdir" install
+}