diff --git a/gnupg/PKGBUILD b/gnupg/PKGBUILD deleted file mode 100644 index 5646870e2..000000000 --- a/gnupg/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# $Id: PKGBUILD 52155 2009-09-16 11:08:07Z allan $ -# Maintainer: Andreas Radke -# Committer: Judd Vinet -pkgname=gnupg -pkgver=1.4.10 -pkgrel=2 -pkgdesc="GNU Privacy Guard - a PGP replacement tool" -arch=('i686' 'x86_64') -license=('GPL3') -depends=('zlib' 'bzip2' 'libldap>=2.4.18' 'libusb' 'curl>=7.16.2' 'readline>=6.0.00') -source=(ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/$pkgname-$pkgver.tar.bz2) -install=gnupg.install -url="http://www.gnupg.org/" -md5sums=('dcf7ed712997888d616e029637bfc303') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --libexecdir=/usr/lib # docdir can't be set properly - make || return 1 - ln -s ${pkgname}-${pkgver}/scripts .. - make DESTDIR=${pkgdir} install || return 1 - - # fix fileconflict with gnupg2 pkg - rm ${pkgdir}/usr/share/man/man1/gpg-zip.1 -} diff --git a/gnupg/gnupg.install b/gnupg/gnupg.install deleted file mode 100644 index 5a6704716..000000000 --- a/gnupg/gnupg.install +++ /dev/null @@ -1,21 +0,0 @@ -info_dir=/usr/share/info -info_files=(gnupg1.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for f in ${info_files[@]}; do - usr/bin/install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for f in ${info_files[@]}; do - usr/bin/install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null - done -} -# vim:set ts=2 sw=2 et: diff --git a/libssh/PKGBUILD b/libssh/PKGBUILD deleted file mode 100644 index e3557e9f6..000000000 --- a/libssh/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: $ -# Maintainer: Andrea Scarpino -# Contributor: ice-man -# Contributor: sergeantspoon - -pkgname=libssh -pkgver=0.4.1 -pkgrel=3 -pkgdesc="Library for accessing ssh client services through C libraries" -url="http://www.libssh.org/" -license=('LGPL') -arch=('i686' 'x86_64') -depends=('openssl') -makedepends=('cmake') #'doxygen' -source=(http://www.libssh.org/files/$pkgname-$pkgver.tar.gz) -md5sums=('258402bf1fabf664daeba4e5fc7a8d09') - -build() { - cd ${srcdir} - mkdir build - cd build - cmake ../${pkgname}-${pkgver} \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release || return 1 - make || return 1 -} - -package(){ - cd ${srcdir}/build - make DESTDIR=${pkgdir} install || return 1 -} diff --git a/libssh2/PKGBUILD b/libssh2/PKGBUILD deleted file mode 100644 index f6cc9b63a..000000000 --- a/libssh2/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# -# Platform packages for Chakra, part of chakra-project.org -# -# maintainer (i686): Phil Miller -# maintainer (x86_64): Manuel Tortosa - -pkgname=libssh2 -pkgver=1.2.7 -pkgrel=1 -pkgdesc="A library implementing the SSH2 protocol as defined by Internet Drafts" -url="http://www.libssh2.org/" -arch=('i686' 'x86_64') -license=('BSD') -depends=('openssl') -makedepends=('zlib') -options=('!libtool') -source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz") -md5sums=('a5d78344886f1282e4008c09bf568076') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr || return 1 - make || return 1 -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install || return 1 - - install -Dm644 COPYING \ - ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1 -} diff --git a/libusb-compat/PKGBUILD b/libusb-compat/PKGBUILD deleted file mode 100644 index a379019aa..000000000 --- a/libusb-compat/PKGBUILD +++ /dev/null @@ -1,24 +0,0 @@ -# $Id: PKGBUILD 79849 2010-05-08 12:19:42Z jgc $ -# Maintainer: Jan de Groot -pkgname=libusb-compat -pkgver=0.1.3 -pkgrel=1 -depends=('libusb' 'sh') -pkgdesc="Library to enable user space application programs to communicate with USB devices." -arch=(i686 x86_64) -url="http://libusb.sourceforge.net/" -license=('LGPL') -source=(http://downloads.sourceforge.net/libusb/libusb-compat-0.1/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2) -options=('!libtool') -md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -}