Commit 093d17c5 authored by Seblu's avatar Seblu
Browse files

add beecrypt

add rpm



git-svn-id: https://seblu.net/s/archpkg@17 02741741-5192-46b8-8916-7152b19231d9
parent 9dbc7ce9
Loading
Loading
Loading
Loading

beecrypt/PKGBUILD

0 → 100644
+28 −0
Original line number Diff line number Diff line
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>

pkgname=beecrypt
pkgver=4.2.1
pkgrel=3
pkgdesc="A strong and fast cryptography toolkit"
arch=('i686' 'x86_64')
url="http://beecrypt.sourceforge.net/"
license=('LGPL')
depends=('icu')
makedepends=('automake' 'python2')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)

md5sums=('8441c014170823f2dff97e33df55af1e')

build() {
  cd ${srcdir}/$pkgname-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc --without-java --disable-openmp --with-python=python2
  make || return 1
}

package() {
  cd ${srcdir}/$pkgname-$pkgver
  make DESTDIR=${pkgdir} install
}

# vim:set ts=2 sw=2 ft=sh et:

rpm/PKGBUILD

0 → 100644
+41 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
# Contributor: Chris Tusa <linisys@gmail.com>

pkgname=rpm
pkgver=5.2.1
pkgrel=2
pkgdesc="The RedHat Package Manager"
arch=('i686' 'x86_64')
url="http://rpm5.org/"
license=('GPL')
groups=('system')
depends=('perl' 'python2' 'zlib' 'beecrypt' 'pcre' 'file')
conflicts=("${pkgname}4")
options=('!emptydirs')
source=("http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver%\.[0-9]}/${pkgname}-${pkgver}.tar.gz")
md5sums=('71f825ede4a2ddc191132ae017c9a6e4')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --localstatedir=/var \
              --with-python=python2 \
              --without-selinux \
              --with-popt=/usr/lib \
              --with-pcre=/usr/lib \
              --with-bzip2=/usr/lib \
              --with-xz=/usr/lib \
              --with-file=/usr/lib \
              || return 1
  make || return 1
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install || return 1
}

# vim:set ts=2 sw=2 ft=sh et: