diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-11-19 23:50:23 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-11-19 23:54:11 -0300 |
commit | 1388d3865a42970817cad02f31c478ae3ef75f7d (patch) | |
tree | 4c09cdd4855991f4b93cf409190c270d761618c6 /pcr/tox-git | |
parent | cd463ba564bfa9e47ffe04d3e9460fd02c3a5194 (diff) |
tox-git: remove from [pcr] because it has been released as Arch official package, but renamed as toxcore
Diffstat (limited to 'pcr/tox-git')
-rw-r--r-- | pcr/tox-git/PKGBUILD | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/pcr/tox-git/PKGBUILD b/pcr/tox-git/PKGBUILD deleted file mode 100644 index 9d67f54f2..000000000 --- a/pcr/tox-git/PKGBUILD +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer: freaj <freaj@riseup.net> -# Contributor (AUR): Håvard Pettersson <mail@haavard.me> -# Contributor (AUR): naxuroqa <naxuroqa at gmail.com> -# Contributor (AUR): Boohbah <boohbah at gmail.com> -# Contributor (AUR): Kevin MacMartin <prurigro at gmail dot com> - -_pkgname=tox -pkgname=tox-git -pkgver=r3418.4b9425f -pkgrel=1 -pkgdesc='Secure, configuration-free, P2P Skype replacement backend' -arch=('i686' 'x86_64') -url='https://tox.im' -license=('GPL3') -depends=( - 'libconfig>=1.4' - 'libsodium>=1.0' - 'libvpx' - 'opus' -) -makedepends=('git' 'check') -optdepends=('qtox-git: qt-based Tox client' - 'utox-git: lightweight Tox client' - 'toxic-git: ncurses-based Tox client') -conflicts=("$_pkgname") -provides=("$_pkgname") -replaces=("$_pkgname") -source=("$_pkgname::git+https://github.com/irungentoo/toxcore.git") -sha512sums=('SKIP') - -pkgver() { - cd $_pkgname - printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} - -build() { - cd $_pkgname - autoreconf -if - ./configure \ - --prefix=/usr \ - --enable-daemon \ - --disable-ntox \ - --disable-tests - make -} - -check() { - cd $_pkgname - make check -} - -package() { - cd $_pkgname - make DESTDIR="$pkgdir" install - install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service "$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service" -} |