From 4a81caeae6ebc5f1d8ecf938042cc19bb766c3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Pettersson?= Date: Tue, 14 Oct 2014 21:38:59 +0200 Subject: [PATCH] Removed build-scripts. PKGBUILD has been moved to a separate repository. --- build-scripts/arch/PKGBUILD | 37 -------------------------- build-scripts/arch/tox-weechat.install | 6 ----- 2 files changed, 43 deletions(-) delete mode 100644 build-scripts/arch/PKGBUILD delete mode 100644 build-scripts/arch/tox-weechat.install diff --git a/build-scripts/arch/PKGBUILD b/build-scripts/arch/PKGBUILD deleted file mode 100644 index 4fdaf7f..0000000 --- a/build-scripts/arch/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: HÃ¥vard Pettersson - -pkgname=tox-weechat-git -pkgver=r165.5f3d2f0 -pkgrel=1 - -pkgdesc='Tox protocol plugin for WeeChat.' -arch=('i686' 'x86_64') -url="https://github.com/haavardp/tox-weechat" -license=('GPL3') - -depends=('tox-git' 'weechat>=1.0.1' 'sqlite>=3.6.19') -makedepends=('git' 'cmake>=2.8.7') - -source=("${pkgname}::git://github.com/haavardp/tox-weechat.git") -md5sums=('SKIP') - -install='tox-weechat.install' - -pkgver() { - cd "${pkgname}" - printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} - -build() { - cd "${pkgname}" - - cmake -DCMAKE_INSTALL_PREFIX=/usr . - make -} - -package() { - cd "${pkgname}" - - make DESTDIR="${pkgdir}/" install -} - diff --git a/build-scripts/arch/tox-weechat.install b/build-scripts/arch/tox-weechat.install deleted file mode 100644 index 807ca1a..0000000 --- a/build-scripts/arch/tox-weechat.install +++ /dev/null @@ -1,6 +0,0 @@ -post_install() -{ - echo "Load Tox-WeeChat in WeeChat manually with '/plugin load /usr/lib/weechat/plugins/tox.so'" - echo 'It should load automatically.' -} -