diff options
Diffstat (limited to 'community/ccrypt/PKGBUILD')
-rw-r--r-- | community/ccrypt/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/community/ccrypt/PKGBUILD b/community/ccrypt/PKGBUILD deleted file mode 100644 index 453f40c3a..000000000 --- a/community/ccrypt/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 79357 2012-11-03 16:20:57Z ttopper $ -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Giovanni Scafora <giovanni@archlinux.org> -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> -# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> - -pkgname=ccrypt -pkgver=1.10 -pkgrel=1 -pkgdesc='A command-line utility for encrypting and decrypting files and streams' -arch=('i686' 'x86_64') -url="http://ccrypt.sourceforge.net" -license=('GPL2') -depends=('glibc') -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha1sums=('95d4e524abb146946fe6af9d53ed0e5e294b34e2') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}/" install -} - -# vim:set ts=2 sw=2 et: |